Extra fix from bbum (SF #402357) for his previous patch:
It should use the normal CC referenced compiler as ObjC is integrated directly into gcc and enabled through the use of the -ObjC flag.
This commit is contained in:
parent
b7fe432a88
commit
ad2c3c7b69
|
@ -204,7 +204,7 @@ sed -e 's/[ ]*#.*//' -e '/^[ ]*$/d' |
|
|||
*.C) obj=`basename $src .C`.o; cc='$(CXX)';;
|
||||
*.cxx) obj=`basename $src .cxx`.o; cc='$(CXX)';;
|
||||
*.cpp) obj=`basename $src .cpp`.o; cc='$(CXX)';;
|
||||
*.m) obj=`basename $src .m`.o; cc='$(CXX)';; # Obj-C
|
||||
*.m) obj=`basename $src .m`.o; cc='$(CC)';; # Obj-C
|
||||
*) continue;;
|
||||
esac
|
||||
obj="$srcdir/$obj"
|
||||
|
|
Loading…
Reference in New Issue