the repopulate script was for vendor branch only
authorPaul Davis <paul@linuxaudiosystems.com>
Fri, 25 Jan 2008 16:08:49 +0000 (16:08 +0000)
committerPaul Davis <paul@linuxaudiosystems.com>
Fri, 25 Jan 2008 16:08:49 +0000 (16:08 +0000)
git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@2965 d708f5d6-7413-0410-9779-e7cbd77b26cf

libs/vamp-sdk/repopulate [deleted file]

diff --git a/libs/vamp-sdk/repopulate b/libs/vamp-sdk/repopulate
deleted file mode 100755 (executable)
index d3e69e6..0000000
+++ /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