From 84f870be664e3b94cb3d81809da046a8d9cc2ca0 Mon Sep 17 00:00:00 2001 From: Andy Polyakov Date: Tue, 7 Nov 2017 22:01:53 +0100 Subject: [PATCH] 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 Reviewed-by: Richard Levitte (Merged from https://github.com/openssl/openssl/pull/4697) (cherry picked from commit b6705d4893d1566c3a5427e387ce99344497758d) --- 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 3dd09c2466..f044e95ff9 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 } -- 2.25.1