changeset 2287:66ffa0e99cef

suppress Xusage.txt build errors, fix INSTALL (yes/no option, uses ALT_BOOTDIR)
author Lukas Stadler <lukas.stadler@jku.at>
date Fri, 08 Apr 2011 13:47:56 +0200
parents cdc846dec464
children 8c426c2891c8
files domake
diffstat 1 files changed, 3 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/domake	Fri Apr 08 13:44:50 2011 +0200
+++ b/domake	Fri Apr 08 13:47:56 2011 +0200
@@ -48,8 +48,9 @@
 
 pushd $graal_home/make
 
-ARCH_DATA_MODEL=64 LANG=C HOTSPOT_BUILD_JOBS=4 ALT_BOOTDIR=$JDK7G INSTALL=$JDK7G/jre make jvmg1
-ARCH_DATA_MODEL=64 LANG=C HOTSPOT_BUILD_JOBS=4 ALT_BOOTDIR=$JDK7 INSTALL=$JDK7/jre make product1
+# the piping magic runs stderr through grep and removes the complaints about Xusage.txt files
+ARCH_DATA_MODEL=64 LANG=C HOTSPOT_BUILD_JOBS=4 ALT_BOOTDIR=$JDK7G INSTALL=y make jvmg1 3>&1 1>&2 2>&3 | grep -v Xusage[.]txt
+ARCH_DATA_MODEL=64 LANG=C HOTSPOT_BUILD_JOBS=4 ALT_BOOTDIR=$JDK7 INSTALL=y make product1 3>&1 1>&2 2>&3 | grep -v Xusage[.]txt
 
 popd