You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by hi...@apache.org on 2010/02/17 14:48:11 UTC

svn commit: r910973 - /harmony/enhanced/drlvm/trunk/vm/vmcore/src/init/vm_properties.cpp

Author: hindessm
Date: Wed Feb 17 13:48:10 2010
New Revision: 910973

URL: http://svn.apache.org/viewvc?rev=910973&view=rev
Log:
Fix java.version property.

Modified:
    harmony/enhanced/drlvm/trunk/vm/vmcore/src/init/vm_properties.cpp

Modified: harmony/enhanced/drlvm/trunk/vm/vmcore/src/init/vm_properties.cpp
URL: http://svn.apache.org/viewvc/harmony/enhanced/drlvm/trunk/vm/vmcore/src/init/vm_properties.cpp?rev=910973&r1=910972&r2=910973&view=diff
==============================================================================
--- harmony/enhanced/drlvm/trunk/vm/vmcore/src/init/vm_properties.cpp (original)
+++ harmony/enhanced/drlvm/trunk/vm/vmcore/src/init/vm_properties.cpp Wed Feb 17 13:48:10 2010
@@ -147,7 +147,7 @@
     if (APR_SUCCESS != apr_temp_dir_get(&tmp, prop_pool)) {
         tmp = ".";
     }
-    properties.set_new("java.version", "1.5.0");
+    properties.set_new("java.version", JAVA_RUNTIME_VERSION);
     properties.set_new("java.vendor", "Apache Software Foundation");
     properties.set_new("java.vendor.url", "http://harmony.apache.org");
     properties.set_new("java.fullversion", VERSION);