Commit 1ca196da2788c8d23c5d8ad0d043fcaee8ff3a22
1 parent
5f1a335a
Exists in
v5.2
Use convert -strip
to not add the build date into the produced .png file to make the package build reproducible. needed because of declined https://github.com/ImageMagick/ImageMagick/pull/1270
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
branding/Makefile.in
@@ -60,7 +60,7 @@ $(BINDIR)/%.png: \ | @@ -60,7 +60,7 @@ $(BINDIR)/%.png: \ | ||
60 | 60 | ||
61 | @echo $@ ... | 61 | @echo $@ ... |
62 | @$(MKDIR) `dirname $@` | 62 | @$(MKDIR) `dirname $@` |
63 | - @$(CONVERT) -background transparent $< $@ | 63 | + @$(CONVERT) -strip -background transparent $< $@ |
64 | @$(OPTIPNG) -o7 $@ | 64 | @$(OPTIPNG) -o7 $@ |
65 | 65 | ||
66 | $(BINDIR)/%.ico: \ | 66 | $(BINDIR)/%.ico: \ |