35aaf3bca6
- it can only be used with the client jvm - the client jvm is only available on 32-bit systems (i386) Additionally, it doesn't need a DEINSTALL script; manage it with the client_jvm PLIST variable like the others client jvm files.
11 lines
223 B
Cheetah
11 lines
223 B
Cheetah
# $NetBSD: INSTALL.tmpl,v 1.2 2011/01/02 18:04:16 ftigeot Exp $
|
|
|
|
MACHINE_ARCH=`uname -m`
|
|
|
|
case ${STAGE} in
|
|
POST-INSTALL)
|
|
if [ "${MACHINE_ARCH}" = "i386" ]; then
|
|
${PREFIX}/bin/jdk16-java -client -Xshare:dump
|
|
fi
|
|
;;
|
|
esac
|