Currently, our less-verbose mode for make (adapted from Kbuild), uses an "echo -e \t" to print a tab for spacing. However, this doesn't work correctly with all versions of echo. (for example, the recent change in Ubuntu edgy to a non-bash /bin/sh causes every line to be preceded with a bogus literal "-e").
This patch replaces the use of "echo -e" with an explicit tab, included literally in the Makefile. Signed-off-by: David Gibson <[EMAIL PROTECTED]> Index: libhugetlbfs/Makefile =================================================================== --- libhugetlbfs.orig/Makefile 2006-11-02 14:28:14.000000000 +1100 +++ libhugetlbfs/Makefile 2006-11-02 14:28:26.000000000 +1100 @@ -77,7 +77,7 @@ INSTALL_LDSCRIPTS = $(foreach type,$(LDS ifdef V VECHO = : else -VECHO = echo -e "\t" +VECHO = echo " " .SILENT: endif Index: libhugetlbfs/tests/Makefile =================================================================== --- libhugetlbfs.orig/tests/Makefile 2006-11-02 14:28:48.000000000 +1100 +++ libhugetlbfs/tests/Makefile 2006-11-02 14:28:56.000000000 +1100 @@ -38,7 +38,7 @@ INST_TESTSDIR64 = $(LIBDIR64)/libhugetlb ifdef V VECHO = : else -VECHO = echo -e "\t" +VECHO = echo " " .SILENT: endif -- David Gibson | I'll have my music baroque, and my code david AT gibson.dropbear.id.au | minimalist, thank you. NOT _the_ _other_ | _way_ _around_! http://www.ozlabs.org/~dgibson ------------------------------------------------------------------------- Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 _______________________________________________ Libhugetlbfs-devel mailing list Libhugetlbfs-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/libhugetlbfs-devel