You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by mt...@apache.org on 2009/09/04 15:31:05 UTC

svn commit: r811388 - /commons/sandbox/runtime/trunk/src/main/native/configure

Author: mturk
Date: Fri Sep  4 13:31:05 2009
New Revision: 811388

URL: http://svn.apache.org/viewvc?rev=811388&view=rev
Log:
Be more verbose on missing JAVA_HOME

Modified:
    commons/sandbox/runtime/trunk/src/main/native/configure

Modified: commons/sandbox/runtime/trunk/src/main/native/configure
URL: http://svn.apache.org/viewvc/commons/sandbox/runtime/trunk/src/main/native/configure?rev=811388&r1=811387&r2=811388&view=diff
==============================================================================
--- commons/sandbox/runtime/trunk/src/main/native/configure (original)
+++ commons/sandbox/runtime/trunk/src/main/native/configure Fri Sep  4 13:31:05 2009
@@ -307,7 +307,9 @@
 }
 
 if [ ".$java_home" = . ]; then
-    echo Missing JAVA_HOME environment variable
+    echo 'Missing JAVA_HOME environment variable'
+    echo 'Set JAVA_HOME environment variable to point to valid'
+    echo 'Java SDK location or use --with-java-home=<path>'
     exit 1
 fi
 if [ ! -d "$java_home" ]; then