Commit 39b75e51 by Rainer Orth Committed by Rainer Orth

Don't assume hg convert in gcc_update

	* gcc_update: Determine svn branch from hg convert_revision.

From-SVN: r178056
parent 8619577f
2011-08-25 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
* gcc_update: Determine svn branch from hg convert_revision.
2011-07-18 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE> 2011-07-18 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
* config-list.mk (i586-netware): Remove. * config-list.mk (i586-netware): Remove.
......
...@@ -340,14 +340,13 @@ case $vcs_type in ...@@ -340,14 +340,13 @@ case $vcs_type in
# corresponding to the extra: tag, so need to use hg log --debug # corresponding to the extra: tag, so need to use hg log --debug
# to extract the info. # to extract the info.
parents=`$GCC_HG parents --template '{rev}'` parents=`$GCC_HG parents --template '{rev}'`
revision=`$GCC_HG log --debug -r$parents | \ convert_revision=`$GCC_HG log --debug -r$parents | \
sed -ne "/^extra:.*convert_revision=svn:/ { sed -ne "/^extra:.*convert_revision=svn:/ {
s%^.*@%% s%^[^/]*/%%
p p
}"` }"`
branch=`$GCC_HG branch` revision=`echo $convert_revision | sed -e 's/.*@//'`
# trunk in SVN parlance shows up as default branch in hg. branch=`echo $convert_revision | sed -e 's%branches/%%' -e 's/@.*//'`
[ x$branch = x"default" ] && branch="trunk"
;; ;;
svn) svn)
......
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