From cf244a1b8b9c8562c00a5622f67f9542e57e353f Mon Sep 17 00:00:00 2001 From: =?utf8?q?Bj=C3=B6rn=20Jacke?= Date: Mon, 25 Jun 2012 17:12:35 +0200 Subject: [PATCH] s3:test: make shell code more porable by elimnating "local" keyword MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit don't use "local". That is BASH only. Autobuild-User(master): Björn Jacke Autobuild-Date(master): Mon Jun 25 19:02:13 CEST 2012 on sn-devel-104 --- source3/script/tests/test_net_registry_roundtrip.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/source3/script/tests/test_net_registry_roundtrip.sh b/source3/script/tests/test_net_registry_roundtrip.sh index 050311a8144..f2158879e36 100755 --- a/source3/script/tests/test_net_registry_roundtrip.sh +++ b/source3/script/tests/test_net_registry_roundtrip.sh @@ -66,9 +66,9 @@ conf_roundtrip_step() { LOGDIR_PREFIX="conf_roundtrip" conf_roundtrip() -{ - local DIR=$(mktemp -d ${PREFIX}/${LOGDIR_PREFIX}_XXXXXX) - local LOG=$DIR/log +( + DIR=$(mktemp -d ${PREFIX}/${LOGDIR_PREFIX}_XXXXXX) + LOG=$DIR/log echo conf_roundtrip $1 > $LOG @@ -144,7 +144,7 @@ conf_roundtrip() return 1 fi rm -r $DIR -} +) CONF_FILES=$SERVERCONFFILE -- 2.11.4.GIT