diff options
author | Ivo Hinkelmann <ihi@openoffice.org> | 2010-06-14 18:58:40 +0200 |
---|---|---|
committer | Ivo Hinkelmann <ihi@openoffice.org> | 2010-06-14 18:58:40 +0200 |
commit | 0aa7ec446c71cfa4f23167ec01c63debc951c993 (patch) | |
tree | d0cd7d93087abd8616eb6e58829a4a996c616e89 | |
parent | 09b8d8f9054c8b7413b218972ba0b07fa70c55ab (diff) |
ause121: #i112091# jpropex command
-rwxr-xr-x | solenv/bin/jpropex | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/solenv/bin/jpropex b/solenv/bin/jpropex new file mode 100755 index 000000000000..2d62d13b093e --- /dev/null +++ b/solenv/bin/jpropex @@ -0,0 +1,10 @@ +#!/bin/sh +if [ x${SOLARENV}x = xx ]; then + echo No environment found, please use 'configure' or 'setsolar' + exit 1 +fi +if [ x${JAVA_HOME}x = xx ]; then + echo No Java found! + exit 1 +fi +exec java -DSOLARSRC=${SOLARSRC} -DWORK_STAMP=${WORK_STAMP} -DUSE_SHELL= -jar ${SOLARVER}/${INPATH}/bin${UPDMINOREXT}/jpropex.jar "$@" |