File: 0013-dont-look-for-build-properties-in-user-home.patch

package info (click to toggle)
tomcat10 10.1.46-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 47,452 kB
  • sloc: java: 372,028; xml: 58,352; jsp: 4,737; sh: 1,381; perl: 324; makefile: 25; ansic: 14
file content (22 lines) | stat: -rw-r--r-- 786 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
From: Jakub Adam <jakub.adam@ktknet.cz>
Date: Mon, 16 Jan 2023 23:22:18 +0100
Subject: Don't look for build.properties in the user home directory.

Forwarded: not-needed

This directory doesn't exist on the builders and the attempt to load
a property file there causes a build failure.
---
 build.xml | 1 -
 1 file changed, 1 deletion(-)

--- a/build.xml
+++ b/build.xml
@@ -864,7 +864,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" />