changeset 2891:dbc79f1b0445

PR3166: invalid zip timestamp handling leads to error building bootstrap-javac 2016-08-19 Andrew John Hughes <gnu.andrew@member.fsf.org> PR3166: invalid zip timestamp handling leads to error building bootstrap-javac * AUTHORS: Add Ricardo Ribalda. * NEWS: Updated. 2016-08-19 Ricardo Ribalda <ricardo.ribalda@gmail.com> PR3166: invalid zip timestamp handling leads to error building bootstrap-javac * Makefile.am: (rt): Don't use -u so files are always overwritten, regardless of timestamps.
author Andrew John Hughes <gnu_andrew@member.fsf.org>
date Mon, 19 Sep 2016 19:06:57 +0100
parents 27857942e4d5
children 11416bb1b308
files AUTHORS ChangeLog Makefile.am NEWS
diffstat 4 files changed, 18 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/AUTHORS	Mon Sep 19 18:55:31 2016 +0100
+++ b/AUTHORS	Mon Sep 19 19:06:57 2016 +0100
@@ -35,6 +35,7 @@
 Xerxes RĂ„nby <xerxes@zafena.se>
 Damien Raude-Morvan <drazzib@drazzib.com>
 Mark Reinhold <mr@sun.com>
+Ricardo Ribalda <ricardo.ribalda@gmail.com>
 Bernhard RosenkrÀnzer <bero@arklinux.org>
 Marc Schoenefeld <mschoene@redhat.com>
 Keith Seitz <keiths@redhat.com>
--- a/ChangeLog	Mon Sep 19 18:55:31 2016 +0100
+++ b/ChangeLog	Mon Sep 19 19:06:57 2016 +0100
@@ -1,3 +1,18 @@
+2016-08-19  Andrew John Hughes  <gnu.andrew@member.fsf.org>
+
+	PR3166: invalid zip timestamp handling leads to
+	error building bootstrap-javac
+	* AUTHORS: Add Ricardo Ribalda.
+	* NEWS: Updated.
+
+2016-08-19  Ricardo Ribalda  <ricardo.ribalda@gmail.com>
+
+	PR3166: invalid zip timestamp handling leads to
+	error building bootstrap-javac
+	* Makefile.am:
+	(rt): Don't use -u so files are always overwritten,
+	regardless of timestamps.
+
 2016-08-14  Andrew John Hughes  <gnu.andrew@member.fsf.org>
 
 	PR3141: Pass $(CC) and $(CXX) to OpenJDK build
--- a/Makefile.am	Mon Sep 19 18:55:31 2016 +0100
+++ b/Makefile.am	Mon Sep 19 19:06:57 2016 +0100
@@ -3025,7 +3025,7 @@
 	     cp -a ../../$$dirs $$destpath ; \
 	   done ; \
 	   if [ -w $(STAGE1_BOOT_RUNTIME) ] ; then \
-	     $(ZIP) -qur $(STAGE1_BOOT_RUNTIME) com java javax sun ; \
+	     $(ZIP) -qr $(STAGE1_BOOT_RUNTIME) com java javax sun ; \
 	   fi ; ) \
 	fi
 	mkdir -p stamps
--- a/NEWS	Mon Sep 19 18:55:31 2016 +0100
+++ b/NEWS	Mon Sep 19 19:06:57 2016 +0100
@@ -21,6 +21,7 @@
   - PR3131: PaX marking fails on filesystems which don't support extended attributes
   - PR3135: Makefile.am rule stamps/add/tzdata-support-debug.stamp has a typo in add-tzdata dependency
   - PR3141: Pass $(CC) and $(CXX) to OpenJDK build
+  - PR3166: invalid zip timestamp handling leads to error building bootstrap-javac
 
 New in release 2.6.7 (2016-07-28):