1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-13 13:18:06 +03:00
samba-mirror/source4/script/installpc.sh
Jelmer Vernooij 4bc1cc52ec r12256: Add helper script for installing pkg-config files
(This used to be commit c05ffb05c85475669d72afcc183cfb54bd7c73d5)
2007-10-10 13:47:25 -05:00

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