mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-21 14:16:31 +01:00
the repopulate script was for vendor branch only
git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@2965 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
1a2f772ebc
commit
16b7e56654
1 changed files with 0 additions and 23 deletions
|
|
@ -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
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue