diff options
author | Rob Austein <sra@hactrn.net> | 2011-01-20 14:21:00 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2011-01-20 14:21:00 +0000 |
commit | 9c027d9b1c1b719ad8e57504f003aceae549563e (patch) | |
tree | 093fa727fb5cbefb52d6bc7837d0a2a2347bc621 /openssl | |
parent | 81fbac5c5165e53236b821e9238aafeebc4076fd (diff) |
Yet another tweak to get right mix of static and dynamic linking.
svn path=/configure; revision=3617
Diffstat (limited to 'openssl')
-rw-r--r-- | openssl/Makefile.in | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/openssl/Makefile.in b/openssl/Makefile.in index 21daf3eb..7ffc5287 100644 --- a/openssl/Makefile.in +++ b/openssl/Makefile.in @@ -4,6 +4,7 @@ VERSION = 1.0.0b OPENSSL_CONFIG_COMMAND = @OPENSSL_CONFIG_COMMAND@ OPENSSL_BUILD_DIRECTORY = ${abs_builddir}/openssl +OPENSSL_SO_GLOB = @OPENSSL_SO_GLOB@ PYWRAP_LIBDIR = @PYWRAP_LIBDIR@ abs_top_srcdir = @abs_top_srcdir@ @@ -24,9 +25,9 @@ OPTIONS = enable-rfc3779 enable-cms no-dso enable-shared --prefix=${prefix} all: openssl-${VERSION}/Makefile cd openssl-${VERSION}; ${MAKE} $@ LIBRPATH=${PYWRAP_LIBDIR} - cd openssl-${VERSION}; mkdir disabled; mv -fv *.so* disabled + cd openssl-${VERSION}; mkdir disabled; mv -fv ${OPENSSL_SO_GLOB} disabled cd openssl-${VERSION}; rm apps/openssl; cd apps; ${MAKE} $@ - cd openssl-${VERSION}; mv -fv disabled/* .; rmdir disabled + cd openssl-${VERSION}; mv -fv disabled/${OPENSSL_SO_GLOB} .; rmdir disabled ln -sf openssl-${VERSION} openssl clean: |