diff options
author | Michael Adam <obnox@samba.org> | 2008-04-01 15:53:54 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2008-04-01 16:16:55 +0200 |
commit | 808378cda2e35ed01074b8caba89691e4be35f0b (patch) | |
tree | 5b5e8f1382080618a2fe1089a2a4a789f2b69f94 /source3/script | |
parent | 1cd7e36ace3abe2e384552b23b0a456ffad20eca (diff) | |
download | samba-808378cda2e35ed01074b8caba89691e4be35f0b.tar.gz samba-808378cda2e35ed01074b8caba89691e4be35f0b.tar.bz2 samba-808378cda2e35ed01074b8caba89691e4be35f0b.zip |
installswat: be more portable, use 'printf "%s"' instead of 'echo -n'
Michael
(This used to be commit 8b015c91c9b10c208fe61cefd71ddc9f4fcbec61)
Diffstat (limited to 'source3/script')
-rwxr-xr-x | source3/script/installswat.sh | 4 |
1 files changed, 2 insertions, 2 deletions
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 |