Write err to stderr
authorBehdad Esfahbod <behdad@src.gnome.org>
Mon, 21 Apr 2008 19:24:02 +0000 (19:24 +0000)
committerBehdad Esfahbod <behdad@src.gnome.org>
Mon, 21 Apr 2008 19:24:02 +0000 (19:24 +0000)
svn path=/trunk/; revision=2597

pango/check.defs

index 0c26c63..b8f07ca 100755 (executable)
@@ -23,7 +23,7 @@ for def in $srcdir/*.def; do
        eval $get_pango_syms | sort -u > "$expected"
        cut -f 2 "$def" | grep -v EXPORTS | sort -u > "$list"
 
-       diff "$list" "$expected" && rm -f "$list" "$expected" || status=1
+       diff "$list" "$expected" >&2 && rm -f "$list" "$expected" || status=1
 done
 
 exit $status