mirror of
https://github.com/samba-team/samba.git
synced 2024-12-23 17:34:34 +03:00
b58deeea69
Support directories for subcategories in tests.
Several small other fixes.
(This used to be commit bde00d9706
)
19 lines
269 B
Bash
Executable File
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
|