Skip to content

Commit

Permalink
Fix framework search path rule on mac
Browse files Browse the repository at this point in the history
  • Loading branch information
Larus Olafsson authored and jjensen committed Dec 14, 2010
1 parent 9dec52b commit e2fe59a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion bin/modules/c-compilers/macosx-gcc.jam
Expand Up @@ -219,7 +219,10 @@ rule C.BundleInfo TARGET : TYPE : VALUE {
rule C.FrameworkDirectories TARGET : FRAMEWORKDIRS : THE_CONFIG : THE_PLATFORM
{
TARGET = [ _retrieveActiveTargetName $(TARGET) ] ;
C.C++Flags $(TARGET) : "-F$(FRAMEWORKDIRS)" : $(THE_CONFIG) : $(THE_PLATFORM) ;
C.Flags CC : $(TARGET) : "-F$(FRAMEWORKDIRS)" : $(THE_CONFIG) : $(THE_PLATFORM) ;
C.Flags C++ : $(TARGET) : "-F$(FRAMEWORKDIRS)" : $(THE_CONFIG) : $(THE_PLATFORM) ;
C.Flags M : $(TARGET) : "-F$(FRAMEWORKDIRS)" : $(THE_CONFIG) : $(THE_PLATFORM) ;
C.Flags MM : $(TARGET) : "-F$(FRAMEWORKDIRS)" : $(THE_CONFIG) : $(THE_PLATFORM) ;
C.LinkFlags $(TARGET) : "-F$(FRAMEWORKDIRS)" : $(THE_CONFIG) : $(THE_PLATFORM) ;
}

Expand Down

0 comments on commit e2fe59a

Please sign in to comment.