[openssl-commits] [openssl] master update
Andy Polyakov
appro at openssl.org
Wed Nov 8 20:56:09 UTC 2017
The branch master has been updated
via b6705d4893d1566c3a5427e387ce99344497758d (commit)
from d6ee8f3dc4414cd97bd63b801f8644f0ff8a1f17 (commit)
- Log -----------------------------------------------------------------
commit b6705d4893d1566c3a5427e387ce99344497758d
Author: Andy Polyakov <appro at openssl.org>
Date: Tue Nov 7 22:01:53 2017 +0100
Configurations/unix-Makefile.tmpl: fix HP-UX build.
HP-UX make doesn't recognize $< in explict target rules, only in
inference ones such as .c.o.
Reviewed-by: Rich Salz <rsalz at openssl.org>
Reviewed-by: Richard Levitte <levitte at openssl.org>
(Merged from https://github.com/openssl/openssl/pull/4697)
-----------------------------------------------------------------------
Summary of changes:
Configurations/unix-Makefile.tmpl | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Configurations/unix-Makefile.tmpl b/Configurations/unix-Makefile.tmpl
index 617d3b9..dfd80c2 100644
--- a/Configurations/unix-Makefile.tmpl
+++ b/Configurations/unix-Makefile.tmpl
@@ -856,7 +856,7 @@ EOF
}
return <<"EOF";
$args{src}: $args{generator}->[0] $deps
- \$(CC) $incs \$(CFLAGS) -E \$< | \\
+ \$(CC) $incs \$(CFLAGS) -E $args{generator}->[0] | \\
\$(PERL) -ne '/^#(line)?\\s*[0-9]+/ or print' > \$@
EOF
}
More information about the openssl-commits
mailing list