# HG changeset patch # User duke # Date 1499271387 -7200 # Node ID 4811785b2a7bbb370fe9216397a13002b61ec2ad # Parent 16ab57e586697a37ab5657902b8eb50ae5c33208# Parent 60b5f491c654469266811c2c8ad387b60dac74cd Merge diff -r 16ab57e58669 -r 4811785b2a7b .hgtags-top-repo --- a/.hgtags-top-repo Fri Jul 13 14:06:34 2012 -0700 +++ b/.hgtags-top-repo Wed Jul 05 18:16:27 2017 +0200 @@ -168,3 +168,4 @@ e4f81a817447c3a4f6868f083c81c2fb1b15d44c jdk8-b44 633f2378c904c92bb922a6e19e9f62fe8eac14af jdk8-b45 27fa766a2298ba8347dc198f0cf85ba6618e17db jdk8-b46 +1dcb4b7b9373e64e135c12fe1f8699f1f80e51e8 jdk8-b47 diff -r 16ab57e58669 -r 4811785b2a7b make/scripts/hgforest.sh --- a/make/scripts/hgforest.sh Fri Jul 13 14:06:34 2012 -0700 +++ b/make/scripts/hgforest.sh Wed Jul 05 18:16:27 2017 +0200 @@ -98,7 +98,8 @@ ( ( if [ "${command}" = "clone" -o "${command}" = "fclone" ] ; then - cline="hg clone ${pull_default}/${i} ${i}" + pull_newrepo="`echo ${pull_default}/${i} | sed -e 's@\([^:]/\)//*@\1@g'`" + cline="hg clone ${pull_newrepo} ${i}" echo "# ${cline}" ( eval "${cline}" ) else @@ -121,7 +122,8 @@ n=`expr ${n} '+' 1` ( ( - cline="hg clone ${pull_extra}/${i} ${i}" + pull_newextrarepo="`echo ${pull_extra}/${i} | sed -e 's@\([^:]/\)//*@\1@g'`" + cline="hg clone ${pull_newextrarepo} ${i}" echo "# ${cline}" ( eval "${cline}" ) echo "# exit code $?"