aboutsummaryrefslogtreecommitdiffstats
path: root/build.xml
diff options
context:
space:
mode:
authorDominik Stadler <centic@apache.org>2015-02-23 20:45:21 +0000
committerDominik Stadler <centic@apache.org>2015-02-23 20:45:21 +0000
commit2cdeca15e0aef38e6ab356f3593354569d7aca8c (patch)
treea6e1be35be6211fcd1e2cce23d5814bbff45b040 /build.xml
parent92b1045a50eebc06f85c94a3e7672937caa00a25 (diff)
downloadpoi-2cdeca15e0aef38e6ab356f3593354569d7aca8c.tar.gz
poi-2cdeca15e0aef38e6ab356f3593354569d7aca8c.zip
Bug 57612: Fix checking for proxy/accessible website in TestSignatureInfo
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1661774 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml6
1 files changed, 5 insertions, 1 deletions
diff --git a/build.xml b/build.xml
index a0fe7c5ec8..f29aa8d372 100644
--- a/build.xml
+++ b/build.xml
@@ -82,7 +82,11 @@ under the License.
<property name="POI.testdata.path" value="test-data"/>
<property name="java.awt.headless" value="true"/>
<property name="additionaljar" value=""/>
- <property name="http_proxy" value="${env.http_proxy}"/>
+ <condition property="http_proxy"
+ value="${env.http_proxy}"
+ else="">
+ <isset property="env.http_proxy"/>
+ </condition>
<!-- Main: -->
<property name="main.resource1.dir" value="src/resources/main"/>