summaryrefslogtreecommitdiffstats
path: root/win/tools/collect_kdelibs_pro_files
diff options
context:
space:
mode:
Diffstat (limited to 'win/tools/collect_kdelibs_pro_files')
-rwxr-xr-xwin/tools/collect_kdelibs_pro_files22
1 files changed, 0 insertions, 22 deletions
diff --git a/win/tools/collect_kdelibs_pro_files b/win/tools/collect_kdelibs_pro_files
deleted file mode 100755
index 3925f675e..000000000
--- a/win/tools/collect_kdelibs_pro_files
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/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
-