From: hniksic Date: Fri, 24 Jun 2005 22:52:59 +0000 (-0700) Subject: [svn] Don't split the sed invocation over multiple lines. X-Git-Tag: v1.13~916 X-Git-Url: http://sjero.net/git/?p=wget;a=commitdiff_plain;h=00196c4303cc613f56254a23ce6582ce84318d95 [svn] Don't split the sed invocation over multiple lines. --- diff --git a/ChangeLog b/ChangeLog index 1e2a89b3..f9a0e188 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2005-06-25 Hrvoje Niksic + + * Makefile.in (DISTFILES): Don't split the sed invocation across + several lines, Solaris make passes the backslashes to sed literally. + 2005-06-25 Hrvoje Niksic * Makefile.in: Instead of creating configure.bat from diff --git a/Makefile.in b/Makefile.in index 54acb2c1..65f5ac8f 100644 --- a/Makefile.in +++ b/Makefile.in @@ -130,10 +130,7 @@ dist: $(srcdir)/configure DISTFILES DISTFILES: FORCE rm -rf $(DISTNAME) (cd $(srcdir); find . ! -type d -print) \ - | sed '/\/\(CVS\|RCS\)\//d; \ - /$@/d; \ - /\.tar.*/d; \ - s/^.\///; /^\.$$/d;' \ + | sed '/\/\(CVS\|RCS\)\//d; /$@/d; /\.tar.*/d; s/^.\///; /^\.$$/d;' \ | sort | uniq > $@ #