From: Chris Lattner Date: Thu, 15 Jun 2006 17:31:22 +0000 (+0000) Subject: Fix building on case-sensitive file systems, grr :) X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;ds=sidebyside;h=9ec2c3d4555cf454f70a867cc98cc9a73dfc98e2;p=oota-llvm.git Fix building on case-sensitive file systems, grr :) git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28801 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/Makefile.rules b/Makefile.rules index 18fd56f2def..18814fa5aa2 100644 --- a/Makefile.rules +++ b/Makefile.rules @@ -373,10 +373,10 @@ endif # apps. ifdef UNIVERSAL CompileCommonOpts += \ - -arch i386 -arch ppc -isysroot /Developer/SDKs/MACOSX10.4u.sdk/ + -arch i386 -arch ppc -isysroot /Developer/SDKs/MacOSX10.4u.sdk/ Relink.Flags := -XCClinker -arch -XCClinker i386 -XCClinker -arch \ -XCClinker ppc -XCClinker \ - -isysroot -XCClinker /Developer/SDKs/MACOSX10.4u.sdk/ + -isysroot -XCClinker /Developer/SDKs/MacOSX10.4u.sdk/ DISABLE_AUTO_DEPENDENCIES=1 endif