diff options
author | miwi <miwi@FreeBSD.org> | 2007-02-08 23:42:11 +0000 |
---|---|---|
committer | miwi <miwi@FreeBSD.org> | 2007-02-08 23:42:11 +0000 |
commit | 877af75cbe13ab249c2ebc864e377e59e107105b (patch) | |
tree | d23f28d66ba80adacb499613ceb7da03c307dee8 /devel/libpthread-stubs/files/patch-configure-objformat | |
parent | 17f2affa399fad2d1ac9a9cdd46f2e178c81b828 (diff) | |
download | FreeBSD-ports-877af75cbe13ab249c2ebc864e377e59e107105b.zip FreeBSD-ports-877af75cbe13ab249c2ebc864e377e59e107105b.tar.gz |
- Fix after objformat removal
Submitted by: pointyhat via kris
Approved by: maintainer
Diffstat (limited to 'devel/libpthread-stubs/files/patch-configure-objformat')
-rw-r--r-- | devel/libpthread-stubs/files/patch-configure-objformat | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/devel/libpthread-stubs/files/patch-configure-objformat b/devel/libpthread-stubs/files/patch-configure-objformat new file mode 100644 index 0000000..00a2029 --- /dev/null +++ b/devel/libpthread-stubs/files/patch-configure-objformat @@ -0,0 +1,21 @@ +--- configure.old Fri Feb 2 12:45:00 2007 ++++ configure Fri Feb 2 12:45:41 2007 +@@ -9008,14 +9008,10 @@ + freebsd* | dragonfly*) + # DragonFly does not have aout. When/if they implement a new + # versioning mechanism, adjust this. +- if test -x /usr/bin/objformat; then +- objformat=`/usr/bin/objformat` +- else +- case $host_os in +- freebsd[123]*) objformat=aout ;; +- *) objformat=elf ;; +- esac +- fi ++ case $host_os in ++ freebsd[123]*) objformat=aout ;; ++ *) objformat=elf ;; ++ esac + version_type=freebsd-$objformat + case $version_type in + freebsd-elf*) |