summaryrefslogtreecommitdiff
path: root/maintMakefile
diff options
context:
space:
mode:
authorPaul Smith <psmith@gnu.org>2016-03-06 13:29:43 -0500
committerPaul Smith <psmith@gnu.org>2016-03-08 23:40:46 -0500
commitfb7a7adc8a54bfd33ca939f7ab6e039a3b2c3355 (patch)
treee861773723747ed35bd09b9fd6347fa8b7b7fb18 /maintMakefile
parent4f8be4bb28594756b994d6a55e23416570a9a1ed (diff)
downloadmake-git-fb7a7adc8a54bfd33ca939f7ab6e039a3b2c3355.tar.gz
Extract jobserver implementation into OS-specific files.
* os.h, posixos.c, w32/w32os.c: New files implementing jobserver. * job.c, job.h, main.c, makeint.h: Move content to new files. * w32/include/sub_proc.h, w32/subproc/sub_proc.c: Ditto. * Makefile.am: Build and package OS-specific files. * build_w32.bat, make_msvc_net2003.vcproj, README.W32.template: Update for new files, and clean up the build. * POTFILES.in, maintMakefile, NMakefile.template: Ditto. * w32/subproc/build.bat: Delete as unused.
Diffstat (limited to 'maintMakefile')
-rw-r--r--maintMakefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/maintMakefile b/maintMakefile
index 3edf8d75..f7bdf002 100644
--- a/maintMakefile
+++ b/maintMakefile
@@ -276,7 +276,7 @@ changelog-check:
po-check:
if test -f po/POTFILES.in; then \
grep '^[^#]' po/POTFILES.in | sort > $@-1; \
- $(PERL) -wn -e 'if (/\b_\(/) { $$ARGV eq "makeint.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 }' `find . -name '*.[ch]'` | sed 's,^\./,,' | sort > $@-2; \
diff -u $@-1 $@-2 || exit 1; \
rm -f $@-1 $@-2; \
fi