repo.or.cz
/
Samba
/
gbeck.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
tdb: add script to extract signatures from header files.
[Samba/gbeck.git]
/
source4
/
script
/
installpc.sh
blob
81ca2f81454cdf1d03aab11f0b6902756d5fc44a
1
#!/bin/sh
2
# install miscellaneous files
3
4
SRCDIR
=
"
$1
"
5
PKGCONFIGDIR
=
"
$2
"
6
shift
7
shift
8
9
cd
$SRCDIR
||
exit
1
10
11
for
I
in
$
*
12
do
13
cp
$I $PKGCONFIGDIR
14
done
15
16
exit
0