blob: 3925f675e56293b0edabe69885df29f83b821288 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#!/bin/bash
# Copies all used .pro (and a few shell) files tdelibs/ to tdelibs/win/pro_files/
# what makes it easier to commit that to KDE CVS
# (c) 2005, Jaroslaw Staniek
dest=win/pro_files
mkdir -p $dest
.check_kde_env || exit 1
cd "$KDELIBS"
for pro in `find . -name \*.pro | grep -v "\/\.\|^\.\/win/"` kded/makeall.sh kded/makeall_rel.sh ; do
dir=`dirname "$pro"`
mkdir -p "$dest/$dir"
if [ "$pro" -nt "$dest/$pro" ] ; then
cp -p "$pro" "$dest/$pro"
echo "$pro"
fi
done
|