From 63ff9298d5c887bd8cac7b77a9f08e090966821e Mon Sep 17 00:00:00 2001 From: Michael Wilkerson Date: Fri, 23 Jul 2010 16:42:10 -0700 Subject: [PATCH 1/3] Added tag jdk7-b102 for changeset 785a8905908b --- .hgtags-top-repo | 1 + 1 file changed, 1 insertion(+) diff --git a/.hgtags-top-repo b/.hgtags-top-repo index 9b4264cf2d1..95f8b4a541a 100644 --- a/.hgtags-top-repo +++ b/.hgtags-top-repo @@ -76,3 +76,4 @@ cf71cb5151166f35433afebaf67dbf34a704a170 jdk7-b96 e7f18db469a3e947b7096bfd12e87380e5a042cd jdk7-b99 b218a53ec7d3d42be61d31d6917a6c5c037b6f56 jdk7-b100 4193eaf5f1b82794c6a0fb1a8d11af43d1b1d611 jdk7-b101 +a136a51f5113da4dad3853b74a8536ab583ab112 jdk7-b102 From f907666b7cb8d6b99209afbe3e0ea7af6792ef66 Mon Sep 17 00:00:00 2001 From: Michael Wilkerson Date: Fri, 23 Jul 2010 16:42:15 -0700 Subject: [PATCH 2/3] Added tag jdk7-b102 for changeset e2378fd93633 --- hotspot/.hgtags | 1 + 1 file changed, 1 insertion(+) diff --git a/hotspot/.hgtags b/hotspot/.hgtags index 578e9701ea0..3d13f93a4be 100644 --- a/hotspot/.hgtags +++ b/hotspot/.hgtags @@ -106,3 +106,4 @@ d38f45079fe98792a7381dbb4b64f5b589ec8c58 jdk7-b94 ad1977f08c4d69162a0775fe3f9576b9fd521d10 jdk7-b100 6c3a919105b68c15b7db923ec9a00006e9560910 jdk7-b101 ad1977f08c4d69162a0775fe3f9576b9fd521d10 hs19-b03 +c5cadf1a07717955cf60dbaec16e35b529fd2cb0 jdk7-b102 From 3362748733ae1c7f1e9e117f765b760ddab11630 Mon Sep 17 00:00:00 2001 From: Kelly O'Hair Date: Mon, 26 Jul 2010 14:14:42 -0700 Subject: [PATCH 3/3] 6972274: Fix the use of egrep -ci in the top level makefile sanity checks Reviewed-by: prr --- make/sanity-rules.gmk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/make/sanity-rules.gmk b/make/sanity-rules.gmk index 6a17a5be890..1ab62f7d601 100644 --- a/make/sanity-rules.gmk +++ b/make/sanity-rules.gmk @@ -228,7 +228,7 @@ endif ###################################################### alt_bootdir: ifdef ALT_BOOTDIR - @if [ `$(ECHO) $(subst \,/,$(ALT_BOOTDIR)) | $(EGREP) -ci '^([a-z]:)?/'` -ne 1 ]; then \ + @if [ `$(ECHO) $(subst \,/,$(ALT_BOOTDIR)) | $(EGREP) -c '^([A-Za-z]:)?/'` -ne 1 ]; then \ $(ECHO) "ERROR: ALT_BOOTDIR must be an Absolute Path Name, \n" \ " not a Relative Path Name. \n" \ " The current value of ALT_BOOTDIR is \n" \