From 61c2bcdf20f83340c732a1b727b3349be7235c0c Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Mon, 28 Feb 2011 17:06:01 +0100 Subject: s3:test: fix registry roundtrip test on older systems (usage of mktemp) --tmpdir is not a valid option to mktemp on older systems --- source3/script/tests/test_net_registry_roundtrip.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3') diff --git a/source3/script/tests/test_net_registry_roundtrip.sh b/source3/script/tests/test_net_registry_roundtrip.sh index 52ce192af4..eba28a6223 100755 --- a/source3/script/tests/test_net_registry_roundtrip.sh +++ b/source3/script/tests/test_net_registry_roundtrip.sh @@ -59,7 +59,7 @@ LOGDIR_PREFIX="conf_roundtrip" conf_roundtrip() { - local DIR=$(mktemp -d --tmpdir=$PREFIX ${LOGDIR_PREFIX}_XXXX) + local DIR=$(mktemp -d ${PREFIX}/${LOGDIR_PREFIX}_XXXX) local LOG=$DIR/log echo conf_roundtrip $1 > $LOG -- cgit