Ticket #3298: haiku_gcc2_osx.patch
File haiku_gcc2_osx.patch, 1.3 KB (added by , 16 years ago) |
---|
-
buildtools/legacy/gcc/config.guess
519 519 i?86:BSD/386:*:* | *:BSD/OS:*:*) 520 520 echo ${UNAME_MACHINE}-pc-bsdi${UNAME_RELEASE} 521 521 exit 0 ;; 522 *:Darwin:*:*) 523 echo ${UNAME_MACHINE}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-_].*//'` 524 exit 0 ;; 522 525 *:FreeBSD:*:*) 523 526 if test -x /usr/bin/objformat -a "elf" = "`/usr/bin/objformat`"; then 524 527 echo ${UNAME_MACHINE}-unknown-freebsdelf -
buildtools/legacy/gcc/Makefile.in
141 141 then echo $$r/m4/m4 ; \ 142 142 else echo ${DEFAULT_M4} ; fi` 143 143 144 MAKEINFO = `if [ - f $$r/texinfo/makeinfo/Makefile] ; \145 then echo $$r/texinfo/makeinfo/makeinfo ; \146 else echo makeinfo ; fi`144 MAKEINFO = `if [ -x /usr/bin/makeinfo ] ; \ 145 then echo makeinfo ; \ 146 else echo $$r/texinfo/makeinfo/makeinfo ; fi` 147 147 148 148 # This just becomes part of the MAKEINFO definition passed down to 149 149 # sub-makes. It lets flags be given on the command line while still