aboutsummaryrefslogtreecommitdiff
path: root/make
diff options
context:
space:
mode:
authorohair <none@none>2010-06-17 17:19:58 -0700
committerohair <none@none>2010-06-17 17:19:58 -0700
commit55ecd75547ce68ecc1eb2e8b9b6f1f13fb939a40 (patch)
tree328e624ac03084da216bc56031f9b1e2cdcebeb2 /make
parentd0a0888653fea3b59538635f607e241c4ae9a820 (diff)
downloadjdk8u_jaxws-55ecd75547ce68ecc1eb2e8b9b6f1f13fb939a40.tar.gz
6955292: Workaround ant 1.7.1 package-info.java issue in ant scripts
6940241: Change jaxp/jaxws so that the http downloads are not done by default 6960333: Add make level ALLOW_DOWNLOADS=true option Reviewed-by: darcy, ramap
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 ed40a378..9b9d3cb8 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,\