Author: geirm
Date: Wed Aug 2 08:38:15 2006
New Revision: 428033
URL: http://svn.apache.org/viewvc?rev=428033&view=rev
Log:
changed build.xml to look for a properties file called
"drlvm.properties" in build/ directory first, and then
in the users home directory.
This allows general build props, as well as local ones.
This is optional, of course.
Modified:
incubator/harmony/enhanced/drlvm/trunk/build/make/build.xml
Modified: incubator/harmony/enhanced/drlvm/trunk/build/make/build.xml
URL: http://svn.apache.org/viewvc/incubator/harmony/enhanced/drlvm/trunk/build/make/build.xml?rev=428033&r1=428032&r2=428033&view=diff
==============================================================================
--- incubator/harmony/enhanced/drlvm/trunk/build/make/build.xml (original)
+++ incubator/harmony/enhanced/drlvm/trunk/build/make/build.xml Wed Aug 2 08:38:15 2006
@@ -56,6 +56,9 @@
<property name="canonical.deploy.dir" location="../deploy" />
+ <property file="../drlvm.properties"/>
+ <property file="${user.home}/drlvm.properties"/>
+
<!-- ===============================================================
Define locations of external dependencies
================================================================== -->
|