diff options
author | Michael Adam <obnox@samba.org> | 2008-04-01 13:43:20 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2008-04-01 16:16:54 +0200 |
commit | e61e4eb4e5ac5d3ea63549817b6973be693a49dd (patch) | |
tree | b29d1a874e8930968b3d807e70035c6fefb10087 /source3 | |
parent | dc83b956b9600b4577983e327745445b35f481c0 (diff) | |
download | samba-e61e4eb4e5ac5d3ea63549817b6973be693a49dd.tar.gz samba-e61e4eb4e5ac5d3ea63549817b6973be693a49dd.tar.bz2 samba-e61e4eb4e5ac5d3ea63549817b6973be693a49dd.zip |
test: be more portable: replace 'echo -n' by 'printf "%s"' in selftest.sh
Michael
(This used to be commit b6122406fe938fdaf373ff45214db79de06eb989)
Diffstat (limited to 'source3')
-rwxr-xr-x | source3/script/tests/selftest.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/script/tests/selftest.sh b/source3/script/tests/selftest.sh index 2f2cb7b086..492a2c36c6 100755 --- a/source3/script/tests/selftest.sh +++ b/source3/script/tests/selftest.sh @@ -107,7 +107,7 @@ fi ## ## create the test directory layout ## -echo -n "CREATE TEST ENVIRONMENT IN '$PREFIX'"... +printf "%s" "CREATE TEST ENVIRONMENT IN '$PREFIX'"... /bin/rm -rf $PREFIX/* mkdir -p $PRIVATEDIR $LIBDIR $PIDDIR $LOCKDIR $LOGDIR mkdir -p $SOCKET_WRAPPER_DIR |