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:
4d11426
)
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 22:01:26 +0000
(
00:01
+0200)
Submitted by: Bryan Drewery
PR: 3075
(cherry picked from commit
c256e69d3f3acd0794ae9c1f353f4093bd4c8878
)
config
patch
|
blob
|
history
diff --git
a/config
b/config
index 2cb4613a408591b4d4b182694b3744ec2eddda74..30e9a373d670788cece9cd4bf75d9bc0f7244889 100755
(executable)
--- a/
config
+++ b/
config
@@
-706,7
+706,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" ;;