Project Info Name.......: gnu-hello
Description: GNU Hello


gnu-hello       
Info
Commit...:91d835de6ab5dc7fe0985743fad42465cd6dcbe0
Author...:karl <>
Committer:karl <>
Date.....:Wed Aug 23 15:41:08 2006 +0000
Parents..:4bf146e0754b8b8d1ccfe68623e90e8a1124d84b

Message
[project @ 2006-08-23 15:41:08 by karl]
backslashes not needed in AC_CONFIG_OUTPUT, different in diffcheck

Changes
diff --git a/ChangeLog b/ChangeLog
line changes: +6/-0
index 82981a3..e77675c
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2006-08-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
+
+	* configure.ac (AC_CONFIG_FILES): Drop backslashes.
+
+	* Makefile.am (diff): Do not use `echo -e'.
+
 2006-08-23  Karl Berry  <karl@gnu.org>
 
 	* Pretest version 2.1.92.

diff --git a/Makefile.am b/Makefile.am
line changes: +3/-4
index 5401762..610fc58
--- a/Makefile.am
+++ b/Makefile.am
@@ -34,10 +34,9 @@ SUBDIRS = contrib gnulib/lib po src doc man tests
 hello_pre = 2.1.1
 #
 diff: diffcheck
-	echo -e "\
-To apply these patches, cd to the main directory of the package\n\
-and then use \`patch -p1 < hello-XXX.diff'.\n\
-Before building the program, run \`autogen.sh'.\n" > \
+	@(echo "To apply these patches, cd to the main directory of the package"; \
+	  echo "and then use \`patch -p1 < hello-XXX.diff'."; \
+	  echo "Before building the program, run \`autogen.sh'."; ) > \
 	    $(PACKAGE)-$(hello_pre)-$(VERSION).diff
 	-diff -rc2P --exclude=configure --exclude=config.h.in --exclude=*.info \
 	    --exclude=*.gmo --exclude=aclocal.m4 \

diff --git a/configure.ac b/configure.ac
line changes: +7/-7
index 59286f5..4006889
--- a/configure.ac
+++ b/configure.ac
@@ -39,12 +39,12 @@ AM_MISSING_PROG(HELP2MAN, help2man)
 AM_GNU_GETTEXT_VERSION([0.15])
 AM_GNU_GETTEXT([external])
 
-AC_CONFIG_FILES([Makefile \
-           contrib/Makefile \
-           doc/Makefile \
-           gnulib/lib/Makefile \
-           man/Makefile \
-           po/Makefile.in \
-           src/Makefile \
+AC_CONFIG_FILES([Makefile
+           contrib/Makefile
+           doc/Makefile
+           gnulib/lib/Makefile
+           man/Makefile
+           po/Makefile.in
+           src/Makefile
            tests/Makefile])
 AC_OUTPUT

This website is licensed under AGPL-3.0. Feel free to copy!