aboutsummaryrefslogtreecommitdiff
path: root/make
diff options
context:
space:
mode:
authorohair <none@none>2010-06-17 10:50:14 -0700
committerohair <none@none>2010-06-17 10:50:14 -0700
commit0c6708eabf33f8eafba2bc4d98f8d687e55d60bd (patch)
treedabba7b8d5daf28cf39d2db88acd8d1406556941 /make
parent3dee30e4e18b9693416dd0714feebdf0bae72867 (diff)
downloadjdk8u_jaxp-0c6708eabf33f8eafba2bc4d98f8d687e55d60bd.tar.gz
6955292: Workaround ant 1.7.1 package-info.java issue in ant scripts
6960333: Add make level ALLOW_DOWNLOADS=true option 6940241: Change jaxp/jaxws so that the http downloads are not done by default Reviewed-by: darcy
Diffstat (limited to 'make')
-rw-r--r--make/Makefile7
1 files changed, 7 insertions, 0 deletions
diff --git a/make/Makefile b/make/Makefile
index ed40a37..9b9d3cb 100644
--- a/make/Makefile
+++ b/make/Makefile
@@ -65,6 +65,11 @@ else
endif
endif
+# If downloads are allowed
+ifeq ($(ALLOW_DOWNLOADS),true)
+ ANT_OPTIONS += -Dallow.downloads=true
+endif
+
# Figure out the platform we are using
_SYSTEM_UNAME := $(shell uname)
_PLATFORM_KIND = unix
@@ -159,6 +164,8 @@ help:
@echo " $(ANT_TARGETS)"
@echo " "
@echo " Environment or command line variables (all optional):"
+ $(call helpenvline, ALT_DROPS_DIR,\
+ "Directory that contains the drop source bundles i.e. drops.dir")
$(call helpenvline, ALT_BOOTDIR,\
"JAVA_HOME to use when running ant")
$(call helpenvline, ALT_LANGTOOLS_DIST,\