[openssl-commits] [openssl] master update
Richard Levitte
levitte at openssl.org
Sun Mar 20 22:03:16 UTC 2016
The branch master has been updated
via f3e5948af6a9b27aad9cd3224f67b6231da2f89f (commit)
from d57611ea1fa8be1930dfbc3f113674348d11f14c (commit)
- Log -----------------------------------------------------------------
commit f3e5948af6a9b27aad9cd3224f67b6231da2f89f
Author: Richard Levitte <levitte at openssl.org>
Date: Sun Mar 20 02:13:40 2016 +0100
Have makedepend output to stdout and redirect it
This gives us better control of what files are produced.
Reviewed-by: Andy Polyakov <appro at openssl.org>
-----------------------------------------------------------------------
Summary of changes:
Configurations/unix-Makefile.tmpl | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/Configurations/unix-Makefile.tmpl b/Configurations/unix-Makefile.tmpl
index 48cea07..4dced5d 100644
--- a/Configurations/unix-Makefile.tmpl
+++ b/Configurations/unix-Makefile.tmpl
@@ -858,9 +858,8 @@ EOF
if (!$disabled{makedepend} && $makedepprog =~ /\/makedepend/) {
$recipe .= <<"EOF";
$obj$depext: $deps
- rm -f \$\@.tmp; touch \$\@.tmp
- -\$(MAKEDEPEND) -f\$\@.tmp -o"|$obj$objext" -- \$(CFLAGS) $ecflags$incs -- $srcs \\
- 2>/dev/null
+ -\$(MAKEDEPEND) -f- -o"|$obj$objext" -- \$(CFLAGS) $ecflags$incs -- $srcs \\
+ >\$\@.tmp 2>/dev/null
-\$(PERL) -i -pe 's/^.*\\|//; s/ \\/(\\\\.|[^ ])*//; \$\$_ = undef if (/: *\$\$/ || /^(#.*| *)\$\$/); \$\$_.="\\n" unless !defined(\$\$_) or /\\R\$\$/g;' \$\@.tmp
\@if cmp \$\@.tmp \$\@ > /dev/null 2> /dev/null; then \\
rm -f \$\@.tmp; \\
More information about the openssl-commits
mailing list