Codebase list tomcat9 / b0f1d3c
Don't look for build.properties in user home dir Jakub Adam 11 years ago
3 changed file(s) with 21 addition(s) and 22 deletion(s). Raw diff Collapse all Expand all
+0
-21
debian/patches/0013-dont-crash-without-user-home.patch less more
0 From: Jakub Adam <jakub.adam@ktknet.cz>
1 Date: Mon, 9 Jul 2012 20:53:38 +0000
2 Subject: 0013-dont-crash-without-user-home
3
4 ---
5 build.xml | 2 +-
6 1 file changed, 1 insertion(+), 1 deletion(-)
7
8 diff --git a/build.xml b/build.xml
9 index 14340db..14d1e71 100644
10 --- a/build.xml
11 +++ b/build.xml
12 @@ -425,7 +425,7 @@
13 <!-- Property that determines if manifests need updating -->
14 <uptodate property="manifests.uptodate"
15 targetfile="${tomcat.manifests}/default.manifest" >
16 - <srcfiles file="${user.home}/build.properties" />
17 + <srcfiles file="${user.home}/build.properties" erroronmissingdir="false" />
18 <srcfiles file="${basedir}/build.properties" />
19 <srcfiles file="${basedir}/build.properties.default" />
20 <srcfiles file="${basedir}/build.xml" />
0 From: Jakub Adam <jakub.adam@ktknet.cz>
1 Date: Mon, 9 Jul 2012 20:53:38 +0000
2 Subject: 0013-dont-look-for-build-properties-in-user-home
3
4 ---
5 build.xml | 1 -
6 1 file changed, 1 deletion(-)
7
8 diff --git a/build.xml b/build.xml
9 index 14340db..ae86842 100644
10 --- a/build.xml
11 +++ b/build.xml
12 @@ -425,7 +425,6 @@
13 <!-- Property that determines if manifests need updating -->
14 <uptodate property="manifests.uptodate"
15 targetfile="${tomcat.manifests}/default.manifest" >
16 - <srcfiles file="${user.home}/build.properties" />
17 <srcfiles file="${basedir}/build.properties" />
18 <srcfiles file="${basedir}/build.properties.default" />
19 <srcfiles file="${basedir}/build.xml" />
77 0010-debianize-build-xml.patch
88 0011-fix-classpath-lintian-warnings.patch
99 0012-java7-compat.patch
10 0013-dont-crash-without-user-home.patch
10 0013-dont-look-for-build-properties-in-user-home.patch