Merge Samba3 and Samba4 together
[tprouty/samba.git] / source4 / script / installpc.sh
1 #!/bin/sh
2 # install miscellaneous files
3
4 SRCDIR="$1"
5 PKGCONFIGDIR="$2"
6 shift
7 shift
8
9 cd $SRCDIR || exit 1
10
11 for I in $*
12 do
13         cp $I $PKGCONFIGDIR
14 done
15
16 exit 0