Subject: [PATCH] Echo cannot handle backslash-escaped characters without option "-e"
Date: Wed, 22 Nov 2006 10:10:24 -0600
From: Neo Jia <###@###.###>
Reply-To: ###@###.###
To: ###@###.###
hi,
In the make/Makefile file, there is no "-e" following the $(ECHO). So
those backslash-escaped characters will be printed out as it was when
running "make help".
Index: Makefile
===================================================================
--- Makefile (revision 101)
+++ Makefile (working copy)
@@ -72,7 +72,7 @@
# Make macros for install files or preparing targets
CD=cd
CP=cp
-ECHO=echo
+ECHO=echo -e
GREP=grep
MKDIR=mkdir
MV=mv
Thanks,
Neo
|