diff options
author | David E. O'Brien <obrien@FreeBSD.org> | 1998-09-27 01:56:14 +0000 |
---|---|---|
committer | David E. O'Brien <obrien@FreeBSD.org> | 1998-09-27 01:56:14 +0000 |
commit | 1beb04227cb8428c2a59e33027788a72ef1a1ffa (patch) | |
tree | 610a976e14d2d91810d2e08ff82c1326f9ed9598 /lang/gcc45 | |
parent | Don't strip the binary when building ELF, and remove the empty (diff) |
Build properly on ELF systems.
Notes
Notes:
svn path=/head/; revision=13434
Diffstat (limited to 'lang/gcc45')
-rw-r--r-- | lang/gcc45/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/lang/gcc45/Makefile b/lang/gcc45/Makefile index 39bd266c5987..aebd9611b1eb 100644 --- a/lang/gcc45/Makefile +++ b/lang/gcc45/Makefile @@ -19,7 +19,6 @@ MAINTAINER= obrien@FreeBSD.org EGCS_REV= egcs-2.92.07 LIBSTDCPP_REV= 2.9.0 PLIST_SUB= EGCS_REV=${EGCS_REV} GNU_HOST=${GNUHOST} -GNUHOST= i386-unknown-freebsd GNU_CONFIGURE= yes USE_GMAKE= yes CONFIGURE_ARGS= --with-gnu-as --with-gnu-ld ${GNUHOST} \ @@ -68,3 +67,9 @@ post-install: .endfor .include <bsd.port.mk> + +.if (${PORTOBJFORMAT} == "elf") +GNUHOST= i386-unknown-freebsdelf +.else +GNUHOST= i386-unknown-freebsd +.endif |