diff options
Diffstat (limited to 'maintMakefile')
-rw-r--r-- | maintMakefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/maintMakefile b/maintMakefile index a4fb2f1..bca38ce 100644 --- a/maintMakefile +++ b/maintMakefile @@ -203,11 +203,11 @@ changelog-check: fi # Verify that all source files using _() are listed in po/POTFILES.in. -# Ignore make.h; it defines _(). +# Ignore makeint.h; it defines _(). po-check: if test -f po/POTFILES.in; then \ grep '^[^#]' po/POTFILES.in | sort > $@-1; \ - $(PERL) -wn -e 'if (/\b_\(/) { $$ARGV eq "make.h" || print "$$ARGV\n" and close ARGV }' *.c *.h | sort > $@-2; \ + $(PERL) -wn -e 'if (/\b_\(/) { $$ARGV eq "makeint.h" || print "$$ARGV\n" and close ARGV }' *.c *.h | sort > $@-2; \ diff -u $@-1 $@-2 || exit 1; \ rm -f $@-1 $@-2; \ fi |