From: Richard Levitte Date: Mon, 31 Oct 2016 16:38:36 +0000 (+0100) Subject: Unix Makefile: Some sed implementation truncate long lines. Use perl instead. X-Git-Tag: OpenSSL_1_1_1-pre1~3304 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=ebca7961a6bc2652ecb3cf6dda3f43943e2965d3;p=oweals%2Fopenssl.git Unix Makefile: Some sed implementation truncate long lines. Use perl instead. Fixes #1781 Reviewed-by: Rich Salz (Merged from https://github.com/openssl/openssl/pull/1813) --- diff --git a/Configurations/unix-Makefile.tmpl b/Configurations/unix-Makefile.tmpl index c24ba622ad..b263832927 100644 --- a/Configurations/unix-Makefile.tmpl +++ b/Configurations/unix-Makefile.tmpl @@ -302,7 +302,7 @@ distclean: clean depend: @: {- output_off() if $disabled{makedepend}; "" -} @if egrep "^# DO NOT DELETE THIS LINE" Makefile >/dev/null && [ -z "`find $(DEPS) -newer Makefile 2>/dev/null; exit 0`" ]; then :; else \ - ( sed -e '/^# DO NOT DELETE THIS LINE.*/,$$d' < Makefile; \ + ( $(PERL) -pe 'exit 0 if /^# DO NOT DELETE THIS LINE.*/' < Makefile; \ echo '# DO NOT DELETE THIS LINE -- make depend depends on it.'; \ echo; \ for f in $(DEPS); do \