Merge
authorduke
Wed, 05 Jul 2017 18:16:27 +0200
changeset 13209 4811785b2a7b
parent 13208 16ab57e58669 (current diff)
parent 13191 60b5f491c654 (diff)
child 13211 296b9bcc41c3
Merge
--- 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
--- 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 $?"