Commit 1b31835f by Gerald Pfeifer Committed by Gerald Pfeifer

update_version_svn (FILES): Merge with datestamp_FILES.

	* update_version_svn (FILES): Merge with datestamp_FILES.
	(SVNROOT2): Introduce and use.

From-SVN: r169428
parent 61052244
2011-01-31 Gerald Pfeifer <gerald@pfeifer.com>
* update_version_svn (FILES): Merge with datestamp_FILES.
(SVNROOT2): Introduce and use.
2011-01-30 Gerald Pfeifer <gerald@pfeifer.com> 2011-01-30 Gerald Pfeifer <gerald@pfeifer.com>
* update_version_svn (SVN): Remove obsolete comment. * update_version_svn (SVN): Remove obsolete comment.
......
...@@ -28,10 +28,8 @@ BRANCHES="${BRANCHES} ${ADD_BRANCHES}" ...@@ -28,10 +28,8 @@ BRANCHES="${BRANCHES} ${ADD_BRANCHES}"
# This is put into the datestamp files. # This is put into the datestamp files.
CURR_DATE=`/bin/date +"%Y%m%d"` CURR_DATE=`/bin/date +"%Y%m%d"`
# version is all there is
datestamp_FILES="gcc/DATESTAMP" datestamp_FILES="gcc/DATESTAMP"
FILES="$datestamp_FILES"
# Assume all will go well. # Assume all will go well.
RESULT=0 RESULT=0
...@@ -39,15 +37,15 @@ for BRANCH in $BRANCHES; do ...@@ -39,15 +37,15 @@ for BRANCH in $BRANCHES; do
echo "Working on \"$BRANCH\"." echo "Working on \"$BRANCH\"."
# Check out the files on the branch. HEAD is in a different namespace. # Check out the files on the branch. HEAD is in a different namespace.
if test "$BRANCH" = HEAD; then if test "$BRANCH" = HEAD; then
for i in $FILES; do SVNROOT2=${SVNROOT}/trunk
${SVN} -q co -N ${SVNROOT}/trunk/`dirname $i` `basename $i` else
done SVNROOT2=${SVNROOT}/branches/${BRANCH}
else
for i in $FILES; do
${SVN} -q co -N ${SVNROOT}/branches/${BRANCH}/`dirname $i` `basename $i`
done
fi fi
for i in $datestamp_FILES; do
${SVN} -q co -N ${SVNROOT2}/`dirname $i` `basename $i`
done
# There are no files to commit yet. # There are no files to commit yet.
COMMIT_FILES="" COMMIT_FILES=""
...@@ -78,7 +76,7 @@ for BRANCH in $BRANCHES; do ...@@ -78,7 +76,7 @@ for BRANCH in $BRANCHES; do
fi fi
# Remove the files. # Remove the files.
for i in $FILES; do for i in $datestamp_FILES; do
rm -rf /tmp/$$/`basename $i` rm -rf /tmp/$$/`basename $i`
done done
done done
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment