diff options
author | Paul Smith <psmith@gnu.org> | 2013-01-20 11:01:01 -0500 |
---|---|---|
committer | Paul Smith <psmith@gnu.org> | 2013-01-20 11:33:20 -0500 |
commit | a45f25ece30e4101ae77c90d2270d253ea9a82ec (patch) | |
tree | bbfc5e41c8df4219f3750c2bfc79f64fe37a552c /maintMakefile | |
parent | b70aa3709e126953faeeec3f666885f9796eea14 (diff) | |
download | gunmake-a45f25ece30e4101ae77c90d2270d253ea9a82ec.tar.gz |
Rename the make.h file to makeint.h for internal use only.
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 |