From 4bc1cc52ec40840afad95942aecf4841b3012451 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Thu, 15 Dec 2005 17:19:27 +0000 Subject: r12256: Add helper script for installing pkg-config files (This used to be commit c05ffb05c85475669d72afcc183cfb54bd7c73d5) --- source4/script/installpc.sh | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100755 source4/script/installpc.sh (limited to 'source4/script/installpc.sh') diff --git a/source4/script/installpc.sh b/source4/script/installpc.sh new file mode 100755 index 0000000000..81ca2f8145 --- /dev/null +++ b/source4/script/installpc.sh @@ -0,0 +1,16 @@ +#!/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 -- cgit