/hg/icedtea6: PR2849: wget not required when downloading is disa...
andrew at icedtea.classpath.org
andrew at icedtea.classpath.org
Mon Feb 15 17:52:43 UTC 2016
changeset e9935e163815 in /hg/icedtea6
details: http://icedtea.classpath.org/hg/icedtea6?cmd=changeset;node=e9935e163815
author: Andrew John Hughes <gnu.andrew at redhat.com>
date: Mon Feb 15 17:48:40 2016 +0000
PR2849: wget not required when downloading is disabled
2016-02-15 Andrew John Hughes <gnu.andrew at redhat.com>
PR2849: wget not required when downloading is disabled
* NEWS: Updated.
* configure.ac:
Only check for wget if downloading is enabled.
diffstat:
ChangeLog | 7 +++++++
NEWS | 1 +
configure.ac | 4 +++-
3 files changed, 11 insertions(+), 1 deletions(-)
diffs (46 lines):
diff -r 412e3ce4141e -r e9935e163815 ChangeLog
--- a/ChangeLog Mon Jan 25 22:06:42 2016 +0000
+++ b/ChangeLog Mon Feb 15 17:48:40 2016 +0000
@@ -1,3 +1,10 @@
+2016-02-15 Andrew John Hughes <gnu.andrew at redhat.com>
+
+ PR2849: wget not required when downloading is disabled
+ * NEWS: Updated.
+ * configure.ac:
+ Only check for wget if downloading is enabled.
+
2016-01-25 Andrew John Hughes <gnu.andrew at redhat.com>
* Makefile.am:
diff -r 412e3ce4141e -r e9935e163815 NEWS
--- a/NEWS Mon Jan 25 22:06:42 2016 +0000
+++ b/NEWS Mon Feb 15 17:48:40 2016 +0000
@@ -26,6 +26,7 @@
* Bug fixes
- PR1886: IcedTea does not checksum supplied tarballs
- PR2083: Add support for building Zero on AArch64
+ - PR2849: wget not required when downloading is disabled
New in release 1.13.10 (2016-01-22):
diff -r 412e3ce4141e -r e9935e163815 configure.ac
--- a/configure.ac Mon Jan 25 22:06:42 2016 +0000
+++ b/configure.ac Mon Feb 15 17:48:40 2016 +0000
@@ -33,7 +33,6 @@
IT_FIND_TOOL([TAR], [tar])
IT_FIND_TOOL([CHMOD], [chmod])
IT_FIND_TOOL([SHA256SUM], [sha256sum])
-IT_FIND_TOOL([WGET], [wget])
IT_FIND_TOOL([ZIP], [zip])
IT_FIND_TOOL([UNZIP], [unzip])
IT_FIND_TOOL([CPIO], [cpio])
@@ -268,6 +267,9 @@
IT_FIND_ECJ_JAR
IT_FIND_TOOL([XSLTPROC], [xsltproc])
fi
+if test "x$enable_downloading" = "xyes"; then
+ IT_FIND_TOOL([WGET], [wget])
+fi
IT_USING_CACAO
AC_CONFIG_FILES([javac], [chmod +x javac])
AC_CONFIG_FILES([javap], [chmod +x javap])
More information about the distro-pkg-dev
mailing list