The branch master has been updated
       via  b6705d4893d1566c3a5427e387ce99344497758d (commit)
      from  d6ee8f3dc4414cd97bd63b801f8644f0ff8a1f17 (commit)


- Log -----------------------------------------------------------------
commit b6705d4893d1566c3a5427e387ce99344497758d
Author: Andy Polyakov <[email protected]>
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 <[email protected]>
    Reviewed-by: Richard Levitte <[email protected]>
    (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
       }
_____
openssl-commits mailing list
To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-commits

Reply via email to