summaryrefslogtreecommitdiff
path: root/libs
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2008-01-25 16:08:49 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2008-01-25 16:08:49 +0000
commit16b7e5665428151397010348e8055bcf4f22a49c (patch)
treefc5f8bd3f0fd03476c3e004eef4d0dae76c58a43 /libs
parent1a2f772ebc7935febcc9eb07f141aa453500d276 (diff)
the repopulate script was for vendor branch only
git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@2965 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs')
-rwxr-xr-xlibs/vamp-sdk/repopulate23
1 files changed, 0 insertions, 23 deletions
diff --git a/libs/vamp-sdk/repopulate b/libs/vamp-sdk/repopulate
deleted file mode 100755
index d3e69e68d3..0000000000
--- a/libs/vamp-sdk/repopulate
+++ /dev/null
@@ -1,23 +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`
-
-for file in `find $from \( -name \*.cpp -o -name \*.h -o -name \*.c \)`
-do
- src=$file
- copy=`echo $file | sed "s?$strip/??"`
- if [ -f $copy ] ; then
- cp $src $copy
- else
- echo "add $copy"
- cp $src $copy
- svn add $copy
- fi
-done \ No newline at end of file