From b58deeea692fc28827e249f0fc4a9d39263a4095 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Mon, 16 Oct 2006 23:09:15 +0000 Subject: r19350: Properly list LOCAL-TALLOC under the "LOCAL" header. Support directories for subcategories in tests. Several small other fixes. (This used to be commit bde00d97068d559b025ab131ff698a82430d14b3) --- source4/script/installtorture.sh | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100755 source4/script/installtorture.sh (limited to 'source4/script/installtorture.sh') diff --git a/source4/script/installtorture.sh b/source4/script/installtorture.sh new file mode 100755 index 0000000000..db7ad9110c --- /dev/null +++ b/source4/script/installtorture.sh @@ -0,0 +1,18 @@ +#!/bin/sh + +INSTALLPERMS=$1 +TORTUREDIR=$2 +shift +shift + +for p in $*; do + p2=`dirname $p` + base=`basename $p` + DESTDIR=$TORTUREDIR/`basename $p2` + mkdir -p $DESTDIR + echo Installing $p as $DESTDIR/$base + cp -f $p $DESTDIR/ + chmod $INSTALLPERMS $DESTDIR/$base +done + +exit 0 -- cgit