diff options
author | Martin Wilke <miwi@FreeBSD.org> | 2007-02-08 23:42:11 +0000 |
---|---|---|
committer | Martin Wilke <miwi@FreeBSD.org> | 2007-02-08 23:42:11 +0000 |
commit | ca2c3eebdb055d5098580bc94a9b6ee24d90a44d (patch) | |
tree | b7db5e4557e1006aef634b881fdb1886e259e81d /devel/libpthread-stubs/files/patch-configure-objformat | |
parent | From the I-should-read-my-own-tutorials dept.: (diff) |
- Fix after objformat removal
Submitted by: pointyhat via kris
Approved by: maintainer
Notes
Notes:
svn path=/head/; revision=184646
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 000000000000..00a2029e639c --- /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*) |