source: branches/samba-3.5.x/source4/script/installpc.sh@ 772

Last change on this file since 772 was 414, checked in by Herwig Bauernfeind, 15 years ago

Samba 3.5.0: Initial import

File size: 155 bytes
Line 
1#!/bin/sh
2# install miscellaneous files
3
4SRCDIR="$1"
5PKGCONFIGDIR="$2"
6shift
7shift
8
9cd $SRCDIR || exit 1
10
11for I in $*
12do
13 cp $I $PKGCONFIGDIR
14done
15
16exit 0
Note: See TracBrowser for help on using the repository browser.