Remove a really ancient line from the default 'make clean' rule that attempts

to delete core files.  This causes a warning in clang/lib/StaticAnalyzer on
case insensitive filesystems, since it contains a "Core" directory.  Since this
is pointless anyway, just zap it.

llvm-svn: 144317
This commit is contained in:
Chris Lattner 2011-11-10 21:12:28 +00:00
parent d1762e00e2
commit 9304ea4306
1 changed files with 3 additions and 1 deletions

View File

@ -301,6 +301,9 @@ else
endif
endif
#CXX.Flags += -stdlib=libc++
#LD.Flags += -stdlib=libc++
ifeq ($(ENABLE_PROFILING),1)
BuildMode := $(BuildMode)+Profile
CXX.Flags := $(filter-out -fomit-frame-pointer,$(CXX.Flags)) -pg -g
@ -1882,7 +1885,6 @@ clean-local::
ifneq ($(strip $(ObjRootDir)),)
-$(Verb) $(RM) -rf $(ObjRootDir)
endif
-$(Verb) $(RM) -f core core.[0-9][0-9]* *.o *.d *~ *.flc
ifneq ($(strip $(SHLIBEXT)),) # Extra paranoia - make real sure SHLIBEXT is set
-$(Verb) $(RM) -f *$(SHLIBEXT)
endif