[openssl-commits] [openssl] OpenSSL_1_1_0-stable update

Andy Polyakov appro at openssl.org
Wed Nov 8 20:56:47 UTC 2017


The branch OpenSSL_1_1_0-stable has been updated
       via  84f870be664e3b94cb3d81809da046a8d9cc2ca0 (commit)
      from  beaf83f5a36f3dd361d3f8eb4ceee1a16f1782d8 (commit)


- Log -----------------------------------------------------------------
commit 84f870be664e3b94cb3d81809da046a8d9cc2ca0
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)
    
    (cherry picked from commit b6705d4893d1566c3a5427e387ce99344497758d)

-----------------------------------------------------------------------

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 3dd09c2..f044e95 100644
--- a/Configurations/unix-Makefile.tmpl
+++ b/Configurations/unix-Makefile.tmpl
@@ -818,7 +818,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