changeset 1741:86a05a0cec75

Correctly use original HotSpot build by default. 2009-10-21 Andrew John Hughes <ahughes@redhat.com> Correctly use original build by default. * acinclude.m4: (AC_CHECK_WITH_HOTSPOT_BUILD): Default should be "default", it's the no clause that should be changed to "original".
author Andrew John Hughes <ahughes@redhat.com>
date Wed, 21 Oct 2009 17:00:21 +0100
parents 093116b4e715
children ad96ca42aab3
files ChangeLog acinclude.m4
diffstat 2 files changed, 10 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Wed Oct 21 16:37:47 2009 +0100
+++ b/ChangeLog	Wed Oct 21 17:00:21 2009 +0100
@@ -1,3 +1,11 @@
+2009-10-21  Andrew John Hughes  <ahughes@redhat.com>
+
+	Correctly use original build by default.
+	* acinclude.m4:
+	(AC_CHECK_WITH_HOTSPOT_BUILD): Default should
+	be "default", it's the no clause that
+	should be changed to "original".
+
 2009-10-21  Andrew John Hughes  <ahughes@redhat.com>
 
 	Move non-version-dependent HotSpot patches back
--- a/acinclude.m4	Wed Oct 21 16:37:47 2009 +0100
+++ b/acinclude.m4	Wed Oct 21 17:00:21 2009 +0100
@@ -894,7 +894,7 @@
 
 AC_DEFUN([AC_CHECK_WITH_HOTSPOT_BUILD],
 [
-  DEFAULT_BUILD="original"
+  DEFAULT_BUILD="default"
   AC_MSG_CHECKING([which HotSpot build to use])
   AC_ARG_WITH([hotspot-build],
 	      [AS_HELP_STRING(--with-hotspot-build,the HotSpot build to use)],
@@ -902,7 +902,7 @@
     HSBUILD="${withval}"
   ],
   [ 
-    HSBUILD="${DEFAULT_BUILD}"
+    HSBUILD="original"
   ])
   if test "x${HSBUILD}" = xyes; then
 	HSBUILD="${DEFAULT_BUILD}"