forked from pool/putty
Jan Engelhardt
d4e18187e4
Add reproducible.patch to fix build-compare OBS-URL: https://build.opensuse.org/request/show/368646 OBS-URL: https://build.opensuse.org/package/show/X11:Utilities/putty?expand=0&rev=29
12 lines
553 B
Diff
12 lines
553 B
Diff
--- putty-0.66/icons/mkicon.py.orig 2015-11-07 10:16:40.000000000 +0000
|
|
+++ putty-0.66/icons/mkicon.py 2016-03-08 18:34:34.600917451 +0000
|
|
@@ -912,7 +912,7 @@
|
|
assert minx >= 0 and miny >= 0 and maxx <= width and maxy <= width
|
|
|
|
block = render(canvas, 0, 0, width, width)
|
|
- p = os.popen("convert -depth 8 -size %dx%d rgba:- %s" % (width,width,fname), "w")
|
|
+ p = os.popen("convert -strip -depth 8 -size %dx%d rgba:- %s" % (width,width,fname), "w")
|
|
assert len(block) == width
|
|
for line in block:
|
|
assert len(line) == width
|