aboutsummaryrefslogtreecommitdiffstats
path: root/Configure
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2000-10-13 16:04:20 +0000
committerRichard Levitte <levitte@openssl.org>2000-10-13 16:04:20 +0000
commit82ce0b2308027b337f0d8bea973eca5f818aaceb (patch)
tree9f6e7f84d1336863f675acd0b8137e26991142e1 /Configure
parenta22fb399cb7126d34134997db5536f0da67afcd2 (diff)
downloadopenssl-82ce0b2308027b337f0d8bea973eca5f818aaceb.tar.gz
Even when you don't want to create shared libraries, it's a good idea
to have the full extension information, so residual shared libraries can be removed so the applications and test programs do not get linked against them by mistake...
Diffstat (limited to 'Configure')
-rwxr-xr-xConfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/Configure b/Configure
index 5cf5ee7981..179af60b3e 100755
--- a/Configure
+++ b/Configure
@@ -831,7 +831,7 @@ while (<IN>)
s/^SHLIB_TARGET=.*/SHLIB_TARGET=$shared_target/;
s/^SHLIB_MARK=.*/SHLIB_MARK=$shared_mark/;
s/^SHARED_LIBS=.*/SHARED_LIBS=\$(SHARED_CRYPTO) \$(SHARED_SSL)/ if (!$no_shared);
- s/^SHARED_LIBS_LINK_EXTS=.*/SHARED_LIBS_LINK_EXTS=.so.\$(SHLIB_MAJOR) .so/ if (!$no_shared && $shared_extension !~ /^\.s[ol]$/);
+ s/^SHARED_LIBS_LINK_EXTS=.*/SHARED_LIBS_LINK_EXTS=.so.\$(SHLIB_MAJOR) .so/ if ($shared_extension ne "" && $shared_extension !~ /^\.s[ol]$/);
print OUT $_."\n";
}
close(IN);