• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/samba-3.5.8/source4/script/
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
17