summaryrefslogtreecommitdiffstats
path: root/Configure
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2019-03-31 15:14:00 +0200
committerRichard Levitte <levitte@openssl.org>2019-04-02 07:30:06 +0200
commit22b414672d0260904ef2f5f5304b02f96c67dd7e (patch)
tree4e90093b5b1bb1e1e68653dcfd245d7e90fbda2b /Configure
parent0b45d8eec051fd9816b6bf46a975fa461ffc983d (diff)
Build cleanup: don't use SHARED_SOURCE with modules
SHARED_SOURCE is reserved for products that are expected to come in dual shared / non-shared form, i.e. the routine libraries like libcrypto and libssl, to distinguish source that should only appear in their shared form. Modules are always shared, so there's no need for them to have this type of distinction. Reviewed-by: Paul Dale <paul.dale@oracle.com> (Merged from https://github.com/openssl/openssl/pull/8623)
Diffstat (limited to 'Configure')
-rwxr-xr-xConfigure5
1 files changed, 2 insertions, 3 deletions
diff --git a/Configure b/Configure
index df66abb738..aaf251de80 100755
--- a/Configure
+++ b/Configure
@@ -2191,9 +2191,8 @@ EOF
src => [ 'sources',
'shared_sources' ],
dst => 'shared_sources' } },
- modules => { dso => { src => [ 'sources',
- 'shared_sources' ],
- dst => 'shared_sources' } },
+ modules => { dso => { src => [ 'sources' ],
+ dst => 'sources' } },
scripts => { script => { src => [ 'sources' ],
dst => 'sources' } }
} -> {$prodtype};