diff options
author | Andy Polyakov <appro@openssl.org> | 2017-11-07 22:01:53 +0100 |
---|---|---|
committer | Andy Polyakov <appro@openssl.org> | 2017-11-08 21:55:02 +0100 |
commit | b6705d4893d1566c3a5427e387ce99344497758d (patch) | |
tree | 9e1ba6a163f6f38bf24585a93f6d3f3c81eafaa4 /Configurations/unix-Makefile.tmpl | |
parent | d6ee8f3dc4414cd97bd63b801f8644f0ff8a1f17 (diff) | |
download | openssl-new-b6705d4893d1566c3a5427e387ce99344497758d.tar.gz |
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@openssl.org>
Reviewed-by: Richard Levitte <levitte@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/4697)
Diffstat (limited to 'Configurations/unix-Makefile.tmpl')
-rw-r--r-- | Configurations/unix-Makefile.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Configurations/unix-Makefile.tmpl b/Configurations/unix-Makefile.tmpl index 617d3b91fb..dfd80c2071 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 } |