changeset 1244:0385f0e789f0

2008-12-03 Matthias Klose <doko@ubuntu.com> * Makefile.am (stamps/extract.stamp): Only extract HOTSPOT_SRC_ZIP, if WITH_ALT_HSBUILD is defined.
author doko@ubuntu.com
date Wed, 03 Dec 2008 16:32:02 +0100
parents 8bf089d06e19
children 0e428e4ada66
files ChangeLog Makefile.am
diffstat 2 files changed, 14 insertions(+), 7 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Wed Dec 03 10:07:38 2008 -0500
+++ b/ChangeLog	Wed Dec 03 16:32:02 2008 +0100
@@ -1,3 +1,8 @@
+2008-12-03  Matthias Klose  <doko@ubuntu.com>
+
+	* Makefile.am (stamps/extract.stamp): Only extract HOTSPOT_SRC_ZIP,
+	if WITH_ALT_HSBUILD is defined.
+
 2008-12-02  Omair Majid  <omajid@redhat.com>
 
 	* pulseaudio/src/java/org/classpath/icedtea/pulseaudio/ContextEvent.java:
--- a/Makefile.am	Wed Dec 03 10:07:38 2008 -0500
+++ b/Makefile.am	Wed Dec 03 16:32:02 2008 +0100
@@ -631,15 +631,17 @@
 	  mkdir openjdk ; \
 	  $(TAR) xf $(OPENJDK_SRC_ZIP) -C openjdk; \
 	  chmod -R ug+w openjdk ; \
-	  if test -e ${HOTSPOT_SRC_ZIP} ; \
-	  then \
-	    rm -rf openjdk/hotspot ; \
-	    $(TAR) xf $(HOTSPOT_SRC_ZIP) ; \
-	    chmod -R ug+w hotspot-* ; \
-	    mv $$(find -maxdepth 1 -name 'hotspot-*' -type d) openjdk/hotspot ; \
-	  fi ; \
 	  sh $(abs_top_srcdir)/fsg.sh ; \
 	fi
+if WITH_ALT_HSBUILD
+	if test -e ${HOTSPOT_SRC_ZIP} ; \
+	then \
+	  rm -rf openjdk/hotspot ; \
+	  $(TAR) xf $(HOTSPOT_SRC_ZIP) ; \
+	  chmod -R ug+w hotspot-* ; \
+	  mv $$(find -maxdepth 1 -name 'hotspot-*' -type d) openjdk/hotspot ; \
+	fi
+endif
 if WITH_CACAO
 if !USE_SYSTEM_CACAO
 	if ! test -d cacao ; \