summaryrefslogtreecommitdiff
path: root/libs/rubberband/repopulate
diff options
context:
space:
mode:
Diffstat (limited to 'libs/rubberband/repopulate')
-rwxr-xr-xlibs/rubberband/repopulate28
1 files changed, 0 insertions, 28 deletions
diff --git a/libs/rubberband/repopulate b/libs/rubberband/repopulate
deleted file mode 100755
index 5a5ca263f6..0000000000
--- a/libs/rubberband/repopulate
+++ /dev/null
@@ -1,28 +0,0 @@
-#!/bin/sh
-
-#
-# this script copies the relevant files from $1 into this
-# working copy of the repository, adds new files and
-# prints a list of mods for SConscript
-#
-
-from=$1
-#strip=`dirname $1`
-strip=$1
-
-echo "Looking for copies in $from ... will strip $strip"
-
-for file in `find $from \( -name \*.cpp -o -name \*.h -o -name \*.c \)`
-do
- src=$file
- copy=`echo $file | sed "s?$strip/??"`
- echo "Look for $copy"
- if [ -f $copy ] ; then
- cp $src $copy
- echo "copy $copy"
- else
- echo "ADD $copy"
- cp $src $copy
- svn add $copy
- fi
-done \ No newline at end of file