comparison Makefile.am @ 24468:e5efa83aa6d2

Fix our COPYRIGHT file to be UTF-8 again and add a test to the commit-check Makefile rule to catch this in the future.
author Richard Laager <rlaager@wiktel.com>
date Mon, 17 Nov 2008 19:28:39 +0000
parents b31d2ca01b7a
children d9810e369601
comparison
equal deleted inserted replaced
24467:558523cebd10 24468:e5efa83aa6d2
32 32
33 commit-check: 33 commit-check:
34 (cd po ; intltool-update -m 2>&1 | grep -v '^mismatched quotes.*\.py$$' | sed "s|current directory|po directory|" | grep . ; if [ $$? = 0 ] ; then exit 1 ; else exit 0 ; fi) 34 (cd po ; intltool-update -m 2>&1 | grep -v '^mismatched quotes.*\.py$$' | sed "s|current directory|po directory|" | grep . ; if [ $$? = 0 ] ; then exit 1 ; else exit 0 ; fi)
35 LC_ALL=C sort -c -t/ -u po/POTFILES.in 35 LC_ALL=C sort -c -t/ -u po/POTFILES.in
36 LC_ALL=C sort -c -t/ -u po/POTFILES.skip 36 LC_ALL=C sort -c -t/ -u po/POTFILES.skip
37 iconv -f utf8 -t utf8 COPYRIGHT | cmp COPYRIGHT -
37 38
38 version-check: commit-check 39 version-check: commit-check
39 # We don't want to release development versions. 40 # We don't want to release development versions.
40 test x`echo $(PACKAGE_VERSION) | grep dev` = x 41 test x`echo $(PACKAGE_VERSION) | grep dev` = x
41 42