The following commit has been merged in the master branch:
commit 53e7e4247ef8f35ab7edf5ca8f435d9d35ebb3ce
Author: Martin Erik Werner <[email protected]>
Date:   Sun Mar 18 00:42:44 2012 +0100

    Quiet dd in extractgfx script

diff --git a/debian/scripts/extractgfx b/debian/scripts/extractgfx
index 6f512ff..e741130 100755
--- a/debian/scripts/extractgfx
+++ b/debian/scripts/extractgfx
@@ -49,9 +49,12 @@ imgdim1=16x1760
 imgdim2=7x910
 imgdim3=4x120
 
-dd if="$gfxfile" bs=1 ibs=1 skip="$imgoffset1" count="$imgsize1" | \
+dd if="$gfxfile" bs=1 ibs=1 skip="$imgoffset1" count="$imgsize1" \
+       2>/dev/null | \
        convert -depth 8 -size "$imgdim1" gray:- gfx1.xpm
-dd if="$gfxfile" bs=1 ibs=1 skip="$imgoffset2" count="$imgsize2" | \
+dd if="$gfxfile" bs=1 ibs=1 skip="$imgoffset2" count="$imgsize2" \
+       2>/dev/null | \
        convert -depth 8 -size "$imgdim2" gray:- gfx2.xpm
-dd if="$gfxfile" bs=1 ibs=1 skip="$imgoffset3" count="$imgsize3" | \
+dd if="$gfxfile" bs=1 ibs=1 skip="$imgoffset3" count="$imgsize3" \
+       2>/dev/null | \
        convert -depth 8 -size "$imgdim3" gray:- gfx3.xpm

-- 
Packaging for original LIERO binary data

_______________________________________________
Pkg-games-commits mailing list
[email protected]
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-games-commits

Reply via email to