[openssl-commits] [openssl] OpenSSL_1_1_0-stable update
Andy Polyakov
appro at openssl.org
Wed Nov 8 20:52:48 UTC 2017
The branch OpenSSL_1_1_0-stable has been updated
via beaf83f5a36f3dd361d3f8eb4ceee1a16f1782d8 (commit)
from f70425d3ac5e4ef17cfa116d99f8f03bbac1c7f2 (commit)
- Log -----------------------------------------------------------------
commit beaf83f5a36f3dd361d3f8eb4ceee1a16f1782d8
Author: Andy Polyakov <appro at openssl.org>
Date: Tue Nov 7 20:43:17 2017 +0100
rc4/build.info: fix HP-UX rc4-ia64 rule.
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/4694)
-----------------------------------------------------------------------
Summary of changes:
crypto/rc4/build.info | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/crypto/rc4/build.info b/crypto/rc4/build.info
index 6c48889..8659526 100644
--- a/crypto/rc4/build.info
+++ b/crypto/rc4/build.info
@@ -20,7 +20,7 @@ ENDRAW[makefile(windows)]
BEGINRAW[Makefile]
{- $builddir -}/rc4-ia64.s: {- $sourcedir -}/asm/rc4-ia64.pl
@(trap "rm $@.*" INT 0; \
- $(PERL) $< $(CFLAGS) $(LIB_CFLAGS) $@.S; \
+ $(PERL) {- $sourcedir -}/asm/rc4-ia64.pl $(CFLAGS) $(LIB_CFLAGS) $@.S; \
case `awk '/^#define RC4_INT/{print$$NF}' $(BLDDIR)/include/openssl/opensslconf.h` in \
int) set -x; $(CC) $(CFLAGS) $(LIB_CFLAGS) -DSZ=4 -E $@.S > $@.i && mv -f $@.i $@;; \
char) set -x; $(CC) $(CFLAGS) $(LIB_CFLAGS) -DSZ=1 -E $@.S > $@.i && mv -f $@.i $@;; \
More information about the openssl-commits
mailing list