You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
488 B
23 lines
488 B
15 years ago
|
#!/bin/bash
|
||
|
|
||
13 years ago
|
# Copies all used .pro (and a few shell) files tdelibs/ to tdelibs/win/pro_files/
|
||
15 years ago
|
# 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"
|
||
|
|
||
14 years ago
|
for pro in `find . -name \*.pro | grep -v "\/\.\|^\.\/win/"` kded/makeall.sh kded/makeall_rel.sh ; do
|
||
15 years ago
|
dir=`dirname "$pro"`
|
||
|
mkdir -p "$dest/$dir"
|
||
|
if [ "$pro" -nt "$dest/$pro" ] ; then
|
||
|
cp -p "$pro" "$dest/$pro"
|
||
|
echo "$pro"
|
||
|
fi
|
||
|
done
|
||
|
|