1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00
samba-mirror/source4/script/installtorture.sh
Jelmer Vernooij b58deeea69 r19350: Properly list LOCAL-TALLOC under the "LOCAL" header.
Support directories for subcategories in tests.
Several small other fixes.
(This used to be commit bde00d9706)
2007-10-10 14:21:14 -05:00

19 lines
269 B
Bash
Executable File

#!/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