projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b74ce8d
)
config: fix executable format detection on latest FreeBSD.
author
Andy Polyakov
<appro@openssl.org>
Sun, 30 Jun 2013 21:55:55 +0000
(23:55 +0200)
committer
Andy Polyakov
<appro@openssl.org>
Sun, 30 Jun 2013 21:55:55 +0000
(23:55 +0200)
Submitted by: Bryan Drewery
PR: 3075
config
patch
|
blob
|
history
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" ;;