From 1ce7b44eb4096a95fedab707870daf190fc6b97b Mon Sep 17 00:00:00 2001 From: Kern Sibbald Date: Fri, 25 Jan 2008 21:21:09 +0000 Subject: [PATCH] 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 --- bacula/src/win32/Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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)`; \ -- 2.39.5