[llvm-branch-commits] [cfe-branch] r100453 - /cfe/branches/Apple/whitney-IB/Makefile

Daniel Dunbar daniel at zuster.org
Mon Apr 5 11:56:42 PDT 2010


Author: ddunbar
Date: Mon Apr  5 13:56:42 2010
New Revision: 100453

URL: http://llvm.org/viewvc/llvm-project?rev=100453&view=rev
Log:
Fix path when checking for clang++.

Modified:
    cfe/branches/Apple/whitney-IB/Makefile

Modified: cfe/branches/Apple/whitney-IB/Makefile
URL: http://llvm.org/viewvc/llvm-project/cfe/branches/Apple/whitney-IB/Makefile?rev=100453&r1=100452&r2=100453&view=diff
==============================================================================
--- cfe/branches/Apple/whitney-IB/Makefile (original)
+++ cfe/branches/Apple/whitney-IB/Makefile Mon Apr  5 13:56:42 2010
@@ -259,7 +259,7 @@
 post-install-rootlinks:
 	$(MKDIR) -p $(DSTROOT)/usr/bin
 	ln -sf ../../$(Install_Prefix)/bin/clang $(DSTROOT)/usr/bin/clang
-	if [ -f ../../$(Install_Prefix)/bin/clang++ ]; then \
+	if [ -f $(DSTROOT)/$(Install_Prefix)/bin/clang++ ]; then \
 	  ln -sf ../../$(Install_Prefix)/bin/clang++ $(DSTROOT)/usr/bin/clang++; \
 	fi
 	$(MKDIR) -p $(DSTROOT)/usr/share/man/man1/





More information about the llvm-branch-commits mailing list