diff options
| author | Keith Packard <keithp@keithp.com> | 2019-02-03 12:48:45 -0800 |
|---|---|---|
| committer | Keith Packard <keithp@keithp.com> | 2019-02-03 13:02:57 -0800 |
| commit | 630f457666b48321be0a5b6fbf391efef1fa3eb4 (patch) | |
| tree | 95526d8ebc708e8cd070174c59bf68b7156fe1af /altosuilib | |
| parent | 145e5a1ac557c4990e74fb64b005fc68d6941bdc (diff) | |
Use strip-nondeterminism to fix JAR timestamps
.jar files are just zip files, and contain dates. These will cause the
build to be non-reproducible. Use strip-nondeterminism to smash all of
these back to a fixed value.
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'altosuilib')
| -rw-r--r-- | altosuilib/Makefile.am | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/altosuilib/Makefile.am b/altosuilib/Makefile.am index c00144f8..3b2e49d4 100644 --- a/altosuilib/Makefile.am +++ b/altosuilib/Makefile.am @@ -101,3 +101,6 @@ $(JAVAROOT): $(JAR): classaltosuilib.stamp $(ICONS) jar cf $@ $(ICONJAR) -C $(JAVAROOT) . +if STRIP_NONDETERMINISM + $(STRIP_NONDETERMINISM) $@ +endif |
