comparison domake @ 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 9aad24bf09ed
children c4922e69711e
comparison
equal deleted inserted replaced
2286:cdc846dec464 2287:66ffa0e99cef
46 mkdir $client_dir 46 mkdir $client_dir
47 fi 47 fi
48 48
49 pushd $graal_home/make 49 pushd $graal_home/make
50 50
51 ARCH_DATA_MODEL=64 LANG=C HOTSPOT_BUILD_JOBS=4 ALT_BOOTDIR=$JDK7G INSTALL=$JDK7G/jre make jvmg1 51 # the piping magic runs stderr through grep and removes the complaints about Xusage.txt files
52 ARCH_DATA_MODEL=64 LANG=C HOTSPOT_BUILD_JOBS=4 ALT_BOOTDIR=$JDK7 INSTALL=$JDK7/jre make product1 52 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
53 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
53 54
54 popd 55 popd
55 56