diff options
author | Richard Levitte <levitte@openssl.org> | 2016-04-14 16:04:56 +0100 |
---|---|---|
committer | Matt Caswell <matt@openssl.org> | 2016-04-14 16:41:03 +0100 |
commit | df6533795b1f9b4cad8dd2773137873355c4b4cc (patch) | |
tree | c7ecedba23a28364a56f47efbc23171a38cc9c08 /Configurations/unix-Makefile.tmpl | |
parent | d90a6beb0e8b519e345204cc533597a2e563dab5 (diff) | |
download | openssl-new-df6533795b1f9b4cad8dd2773137873355c4b4cc.tar.gz |
Fix installation for no-stdio and no-autoalginit
Reviewed-by: Richard Levitte <levitte@openssl.org>
Reviewed-by: Matt Caswell <matt@openssl.org>
Diffstat (limited to 'Configurations/unix-Makefile.tmpl')
-rw-r--r-- | Configurations/unix-Makefile.tmpl | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Configurations/unix-Makefile.tmpl b/Configurations/unix-Makefile.tmpl index e0ad21b683..ed64e654fd 100644 --- a/Configurations/unix-Makefile.tmpl +++ b/Configurations/unix-Makefile.tmpl @@ -86,10 +86,12 @@ DEPS={- join(" ", map { (my $x = $_) =~ s|\.o$|$depext|; $x; } {- output_on() if $disabled{makedepend}; "" -} GENERATED={- join(" ", map { (my $x = $_) =~ s|\.S$|\.s|; $x } keys %{$unified_info{generate}}) -} +{- output_off() if $disabled{apps}; "" -} BIN_SCRIPTS=$(BLDDIR)/tools/c_rehash MISC_SCRIPTS=$(SRCDIR)/tools/c_hash $(SRCDIR)/tools/c_info \ $(SRCDIR)/tools/c_issuer $(SRCDIR)/tools/c_name \ $(BLDDIR)/apps/CA.pl $(BLDDIR)/apps/tsget +{- output_on() if $disabled{apps}; "" -} SHLIB_INFO={- join(" ", map { "\"".shlib($_).";".shlib_simple($_)."\"" } @{$unified_info{libraries}}) -} |