diff options
author | Gerald Pfeifer <gerald@FreeBSD.org> | 2007-02-15 14:02:51 +0000 |
---|---|---|
committer | Gerald Pfeifer <gerald@FreeBSD.org> | 2007-02-15 14:02:51 +0000 |
commit | 627f50da3bf9cee6435b00bda4e389d54142a78c (patch) | |
tree | 22f5568bc8ab0774108843a2b5aba978e28594a2 | |
parent | 0f7135ce52d5543e6fdc22e39a64e25a08b175d5 (diff) |
Account for the removal of /usr/bin/objformat on 7-CURRENT and default
to elf instead of aout in this case. Bump PORTREVISION.
Notes
Notes:
svn path=/head/; revision=185233
-rw-r--r-- | lang/gcc33/Makefile | 2 | ||||
-rw-r--r-- | lang/gcc33/files/patch-ltconfig | 14 |
2 files changed, 15 insertions, 1 deletions
diff --git a/lang/gcc33/Makefile b/lang/gcc33/Makefile index 3eb291716efc..f91d24136ee7 100644 --- a/lang/gcc33/Makefile +++ b/lang/gcc33/Makefile @@ -8,7 +8,7 @@ PORTNAME= gcc PORTVERSION= 3.3.6 -PORTREVISION= 3 +PORTREVISION= 4 PORTEPOCH= 1 CATEGORIES= lang VERSIONSTRING= ${PORTVERSION} diff --git a/lang/gcc33/files/patch-ltconfig b/lang/gcc33/files/patch-ltconfig new file mode 100644 index 000000000000..238574b8adac --- /dev/null +++ b/lang/gcc33/files/patch-ltconfig @@ -0,0 +1,14 @@ +Index: ltconfig +=================================================================== +--- ltconfig ++++ ltconfig (working copy) +@@ -1133,7 +1133,7 @@ + ;; + + freebsd*) +- objformat=`test -x /usr/bin/objformat && /usr/bin/objformat || echo aout` ++ objformat=`test -x /usr/bin/objformat && /usr/bin/objformat || echo elf` + version_type=freebsd-$objformat + case $version_type in + freebsd-elf*) + |