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:
5816302
)
Use $disabled{shared} in a safer manner
author
Richard Levitte
<levitte@openssl.org>
Mon, 22 Feb 2016 18:17:55 +0000
(19:17 +0100)
committer
Richard Levitte
<levitte@openssl.org>
Mon, 22 Feb 2016 18:26:49 +0000
(19:26 +0100)
Reviewed-by: Rich Salz <rsalz@openssl.org>
Makefile.in
patch
|
blob
|
history
diff --git
a/Makefile.in
b/Makefile.in
index 9513003506e95dc383db1e67d1b2c0e13edca159..924dfa0aa0cd1aa64a6038a0746cf758beeebad0 100644
(file)
--- a/
Makefile.in
+++ b/
Makefile.in
@@
-193,7
+193,7
@@
TOP= .
LIBS= libcrypto.a libssl.a
SHARED_CRYPTO=libcrypto$(SHLIB_EXT)
SHARED_SSL=libssl$(SHLIB_EXT)
-SHARED_LIBS={-
'$(SHARED_CRYPTO) $(SHARED_SSL)' unless $disabled{shared}
-}
+SHARED_LIBS={-
$disabled{shared} ? '' : '$(SHARED_CRYPTO) $(SHARED_SSL)'
-}
SHARED_CFLAG={- $target{shared_cflag} -}
SHARED_LDFLAG={- $target{shared_ldflag}
# Unlike other OSes (like Solaris, Linux, Tru64,