diff options
author | Vlastimil Babka <caster@gentoo.org> | 2006-11-01 06:43:55 +0000 |
---|---|---|
committer | Vlastimil Babka <caster@gentoo.org> | 2006-11-01 06:43:55 +0000 |
commit | bc8e52426a22acecae0b8fcae821ff185ec0822d (patch) | |
tree | c9b2285502201d147397af67bca912c0683a1dad | |
parent | launcher.bash can now be used without gjl_jar and gjl_main variables if the p... (diff) | |
download | java-config-bc8e52426a22acecae0b8fcae821ff185ec0822d.tar.gz java-config-bc8e52426a22acecae0b8fcae821ff185ec0822d.tar.bz2 java-config-bc8e52426a22acecae0b8fcae821ff185ec0822d.zip |
Print notice about GENTOO_VM set only with GJL_DEBUG=1 (looks suspiciously when compiling with ejavac() and
ecj-3.2).
svn path=/projects/java-config-2/trunk/; revision=3174
-rw-r--r-- | src/launcher.bash | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/launcher.bash b/src/launcher.bash index 33e3a81..7208d0e 100644 --- a/src/launcher.bash +++ b/src/launcher.bash @@ -36,8 +36,8 @@ fi if [[ -z ${GENTOO_VM} ]]; then request="${request} --get-vm" -else - echo "found \$GENTOO_VM not trying to change vm" >&2 +elif [[ -n ${GJL_DEBUG} ]]; then + echo "Detected \$GENTOO_VM is set, not trying to change vm" >&2 fi # Get the information we need |