pkgsrc-wip/jdk15/INSTALL
Francois Tigeot f8abcb93e4 Fix the generation of classes.jsa :
- it can only be used with the client jvm
- the client jvm is only available on 32-bit systems (i386)
2010-12-22 07:26:54 +00:00

11 lines
218 B
Text

# $NetBSD: INSTALL,v 1.4 2010/12/22 07:26:54 ftigeot Exp $
MACHINE_ARCH=`uname -m`
case ${STAGE} in
POST-INSTALL)
if [ "${MACHINE_ARCH}" = "i386" ]; then
${PREFIX}/bin/jdk15-java -client -Xshare:dump
fi
;;
esac