1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-14 19:24:43 +03:00
samba-mirror/source3/script/linkmodules.sh
Jelmer Vernooij fd4c40a00d Create symlinks for modules that register multiple functions (fixes bug #91 )
(This used to be commit 3000a99b2dc4fbffe4f20b92b22b9658d6620b65)
2003-08-13 04:11:50 +00:00

13 lines
125 B
Bash
Executable File

#!/bin/sh
cd "$1"
test -f "$2" || exit 0
for I in $3 $4 $5 $6 $7 $8
do
echo "Linking $I to $2"
ln -s $2 $I
done
exit 0