1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
|
Description: Don't look for build.properties in the user home directory.
This directory doesn't exist on the builders and the attempt to load
a property file there causes a build failure.
Author: Jakub Adam <jakub.adam@ktknet.cz>
Forwarded: not-needed
--- a/build.xml
+++ b/build.xml
@@ -857,7 +857,6 @@
<!-- Property that determines if manifests need updating -->
<uptodate property="manifests.uptodate"
targetfile="${tomcat.manifests}/default.manifest" >
- <srcfiles file="${user.home}/build.properties" />
<srcfiles file="${basedir}/build.properties" />
<srcfiles file="${basedir}/build.properties.default" />
<srcfiles file="${basedir}/build.xml" />
|