mirror of
https://github.com/samba-team/samba.git
synced 2024-12-23 17:34:34 +03:00
4bc1cc52ec
(This used to be commit c05ffb05c8
)
17 lines
155 B
Bash
Executable File
17 lines
155 B
Bash
Executable File
#!/bin/sh
|
|
# install miscellaneous files
|
|
|
|
SRCDIR="$1"
|
|
PKGCONFIGDIR="$2"
|
|
shift
|
|
shift
|
|
|
|
cd $SRCDIR || exit 1
|
|
|
|
for I in $*
|
|
do
|
|
cp $I $PKGCONFIGDIR
|
|
done
|
|
|
|
exit 0
|