From: Kern Sibbald Date: Fri, 25 Jan 2008 21:21:09 +0000 (+0000) Subject: Correct minor win32 Makefile problem X-Git-Tag: Release-2.2.8^2~3 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=1ce7b44eb4096a95fedab707870daf190fc6b97b;p=bacula%2Fbacula Correct minor win32 Makefile problem git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/branches/Branch-2.2@6314 91ce42f0-d328-0410-95d8-f526ca767f89 --- diff --git a/bacula/src/win32/Makefile b/bacula/src/win32/Makefile index 2797503ee3..335114c802 100644 --- a/bacula/src/win32/Makefile +++ b/bacula/src/win32/Makefile @@ -21,9 +21,9 @@ clean: $(DIRS) $(DIRS): @if test -f Makefile.inc; then \ if $(MAKE) -C $@ $(MAKECMDGOALS); then \ - echo -e "\n===== Make of $@ succeeded =====\n\n" ; \ + echo "\n===== Make of $@ succeeded =====\n\n" ; \ else \ - echo -e "\n!!!!! Make of $@ failed !!!!!\n\n" ; \ + echo "\n!!!!! Make of $@ failed !!!!!\n\n" ; \ fi ; \ fi @@ -39,8 +39,8 @@ Makefile.inc: Makefile.inc.in INCDIR=/mingw/include; \ DLLDIR=/mingw/bin; \ else \ - echo -e "\nThe GCC cross compiler isn't installed."; \ - echo -e "You must run build-win32-cross-tools and build-dependencies first.\n"; \ + echo "\nThe GCC cross compiler isn't installed."; \ + echo "You must run build-win32-cross-tools and build-dependencies first.\n"; \ exit 1; \ fi ; \ $(ECHO_CMD)BUILDDIR=`(pwd)`; \