mirror of
https://github.com/openssl/openssl.git
synced 2025-03-31 20:10:45 +08:00
Makefile et al template: only modify static library with new object files
Previously, we updated the static libraries (libcrypto.a on Unix, libcrypto.lib on Windows) with all the object files, regardless of if they were rebuilt or not. With this change, we only update them with the object files were rebuilt. NOTE: this does not apply on VMS, as the expansion of $? may be too large for a command line. Reviewed-by: Andy Polyakov <appro@openssl.org>
This commit is contained in:
parent
51f6d88420
commit
68cd4e3f99
@ -981,7 +981,7 @@ EOF
|
||||
my $objs = join(" ", map { $_.$objext } @{$args{objs}});
|
||||
return <<"EOF";
|
||||
$lib$libext: $objs
|
||||
\$(AR) \$\@ $objs
|
||||
\$(AR) \$\@ \$\?
|
||||
\$(RANLIB) \$\@ || echo Never mind.
|
||||
EOF
|
||||
}
|
||||
|
@ -404,7 +404,7 @@ EOF
|
||||
return <<"EOF";
|
||||
$lib$libext: $deps
|
||||
\$(AR) \$(ARFLAGS) \$(AROUTFLAG)$lib$libext @<<
|
||||
$objs
|
||||
\$\?
|
||||
<<
|
||||
EOF
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user