[cfe-commits] r70591 - /cfe/tags/Apple/clang/GNUSource.make
Daniel Dunbar
daniel at zuster.org
Fri May 1 16:13:35 PDT 2009
Author: ddunbar
Date: Fri May 1 18:13:34 2009
New Revision: 70591
URL: http://llvm.org/viewvc/llvm-project?rev=70591&view=rev
Log:
Avoid installing things we don't want instead of trying to blow away
later.
Modified:
cfe/tags/Apple/clang/GNUSource.make
Modified: cfe/tags/Apple/clang/GNUSource.make
URL: http://llvm.org/viewvc/llvm-project/cfe/tags/Apple/clang/GNUSource.make?rev=70591&r1=70590&r2=70591&view=diff
==============================================================================
--- cfe/tags/Apple/clang/GNUSource.make (original)
+++ cfe/tags/Apple/clang/GNUSource.make Fri May 1 18:13:34 2009
@@ -86,7 +86,7 @@
Configure = $(Sources)/configure
endif
-Environment = CC="$(CC) -arch $$arch" CXX="$(CXX) -arch $$arch"
+Environment = CC="$(CC) -arch $$arch" CXX="$(CXX) -arch $$arch" ONLY_MAN_DOCS=1
CC_Archs = # set by CC
# FIXME: Common.make shouldn't be setting this in the first place.
@@ -125,7 +125,6 @@
$(MAKE) -C $(BuildDirectory)/$$arch $(Environment) \
$(Install_Flags) $(Install_Target) || exit 1 ; \
done
- $(_v) rm -rf $(DSTROOT)/Developer/docs
./merge-lipo `for arch in $(RC_ARCHS) ; do echo $(BuildDirectory)/install-$$arch ; done` $(DSTROOT)
$(_v) $(FIND) $(DSTROOT) $(Find_Cruft) | $(XARGS) $(RMDIR)
$(_v) $(FIND) $(SYMROOT) $(Find_Cruft) | $(XARGS) $(RMDIR)
More information about the cfe-commits
mailing list