summaryrefslogtreecommitdiffstats
path: root/Configure
diff options
context:
space:
mode:
authorGeoff Thorpe <geoff@openssl.org>2004-06-01 03:18:58 +0000
committerGeoff Thorpe <geoff@openssl.org>2004-06-01 03:18:58 +0000
commit9081980565988d351582998148782a8c91a55e93 (patch)
treefa4e3068e81ec6f22d42877968ba7371e5053d33 /Configure
parent393b704d282909dff28bdca80e2d8a1d404086f4 (diff)
This fixes the installation target for dynamic engines, which was trying to
install to a different location than it had created. (BTW, VMS will need a matching fix in eng_list.c.) Note, these aren't ssl-specific, so I'm putting "engines/" into the libs directory rather than at the "--prefix" level or inside "ssl/".
Diffstat (limited to 'Configure')
-rwxr-xr-xConfigure2
1 files changed, 2 insertions, 0 deletions
diff --git a/Configure b/Configure
index 074e44adf6..4c5c2e2cd5 100755
--- a/Configure
+++ b/Configure
@@ -1438,6 +1438,8 @@ while (<IN>)
{
if (/^#define\s+OPENSSLDIR/)
{ print OUT "#define OPENSSLDIR \"$openssldir\"\n"; }
+ elsif (/^#define\s+ENGINESDIR/)
+ { print OUT "#define ENGINESDIR \"$prefix/lib/engines\"\n"; }
elsif (/^#((define)|(undef))\s+OPENSSL_EXPORT_VAR_AS_FUNCTION/)
{ printf OUT "#undef OPENSSL_EXPORT_VAR_AS_FUNCTION\n"
if $export_var_as_fn;