From ooo_saturn7 at mail.ru Wed Apr 22 07:11:30 2015 From: ooo_saturn7 at mail.ru (=?UTF-8?B?0JDQu9C10LrRgdCw0L3QtNGAINCh0LLQuNGA0LjQtNC+0LI=?=) Date: Wed, 22 Apr 2015 10:11:30 +0300 Subject: =?UTF-8?B?SmF2YTogSG93IHRvIGdldCBvcGVuamRrOHU2MCBzb3VyY2Vz?= In-Reply-To: References: Message-ID: <1429686690.779902329@f107.i.mail.ru> I understand that it seems to be very easy question but I can't find. When I do hg clone http://hg.openjdk.java.net/jdk8u/jdk8u I get sources for openjdk8u40 but I need openjdk8u60. How to get them? From sbaiduzh at redhat.com Wed Apr 22 07:53:07 2015 From: sbaiduzh at redhat.com (Stanislav Baiduzhyi) Date: Wed, 22 Apr 2015 09:53:07 +0200 Subject: Java: How to get openjdk8u60 sources In-Reply-To: <1429686690.779902329@f107.i.mail.ru> References: <1429686690.779902329@f107.i.mail.ru> Message-ID: <3888048.z0oAqEuEUK@thinkpad.hell> On Wednesday 22 April 2015 10:11:30 ????????? ???????? wrote: > I understand that it seems to be very easy question but I can't find. When > I do hg clone http://hg.openjdk.java.net/jdk8u/jdk8u I get sources for > openjdk8u40 but I need openjdk8u60. How to get them? Find the tag you'd like to checkout here: http://hg.openjdk.java.net/jdk8u/jdk8u/tags Let's assume you want jdk8u60-b11 Then the process would look like this (using shell as example): HGTAG=jdk8u60-b11 hg clone http://hg.openjdk.java.net/jdk8u/jdk8u $HGTAG cd $HGTAG bash get_source.sh bash ./common/bin/hgforest.sh checkout $HGTAG -- Regards, Stas