config: fix executable format detection on latest FreeBSD.
authorAndy Polyakov <appro@openssl.org>
Sun, 30 Jun 2013 21:55:55 +0000 (23:55 +0200)
committerAndy Polyakov <appro@openssl.org>
Sun, 30 Jun 2013 21:55:55 +0000 (23:55 +0200)
Submitted by: Bryan Drewery
PR: 3075

config

diff --git a/config b/config
index fd4b1984a599fedca6709751575105e8acf52849..a019f20a9f1cad1ffdba2b4ec636809f7d557c7c 100755 (executable)
--- a/config
+++ b/config
@@ -756,7 +756,7 @@ case "$GUESSOS" in
                            libc=/usr/lib/libc.so
                        else                                    # OpenBSD
                            # ld searches for highest libc.so.* and so do we
-                           libc=`(ls /usr/lib/libc.so.* | tail -1) 2>/dev/null`
+                           libc=`(ls /usr/lib/libc.so.* /lib/libc.so.* | tail -1) 2>/dev/null`
                        fi
                        case "`(file -L $libc) 2>/dev/null`" in
                        *ELF*)  OUT="BSD-x86-elf" ;;