From 808378cda2e35ed01074b8caba89691e4be35f0b Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Tue, 1 Apr 2008 15:53:54 +0200 Subject: installswat: be more portable, use 'printf "%s"' instead of 'echo -n' Michael (This used to be commit 8b015c91c9b10c208fe61cefd71ddc9f4fcbec61) --- source3/script/installswat.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source3/script') diff --git a/source3/script/installswat.sh b/source3/script/installswat.sh index 567bfa1a01..40596f3bd8 100755 --- a/source3/script/installswat.sh +++ b/source3/script/installswat.sh @@ -10,13 +10,13 @@ case $0 in *uninstall*) echo "Removing SWAT from $DESTDIR/$SWATDIR " echo "Removing the Samba Web Administration Tool " - echo -n "Removed " + printf "%s" "Removed " mode='uninstall' ;; *) echo "Installing SWAT in $DESTDIR/$SWATDIR " echo "Installing the Samba Web Administration Tool " - echo -n "Installing " + printf "%s" "Installing " mode='install' ;; esac -- cgit