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

Richard Levitte levitte at openssl.org
Mon Oct 31 22:19:03 UTC 2016


The branch OpenSSL_1_1_0-stable has been updated
       via  936503cb0bc9c3bc08a070e0fc43bb112b1e9d02 (commit)
      from  10f60797e7df6208075acdb08cf3167fae667b47 (commit)


- Log -----------------------------------------------------------------
commit 936503cb0bc9c3bc08a070e0fc43bb112b1e9d02
Author: Richard Levitte <levitte at openssl.org>
Date:   Mon Oct 31 17:38:36 2016 +0100

    Unix Makefile: Some sed implementation truncate long lines.  Use perl instead.
    
    Fixes #1781
    
    Reviewed-by: Rich Salz <rsalz at openssl.org>
    (Merged from https://github.com/openssl/openssl/pull/1813)
    (cherry picked from commit ebca7961a6bc2652ecb3cf6dda3f43943e2965d3)

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

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 a11d7c1..87f8343 100644
--- a/Configurations/unix-Makefile.tmpl
+++ b/Configurations/unix-Makefile.tmpl
@@ -297,7 +297,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 \


More information about the openssl-commits mailing list