From: Jim Meyering Date: Sat, 19 Mar 2011 17:21:56 +0000 (+0100) Subject: maint.mk: fix po-file syntax-check rule X-Git-Tag: v0.1~3085 X-Git-Url: http://erislabs.net/gitweb/?a=commitdiff_plain;h=739321ef60661c7b51a4c7a3fa23957a4d9dbbc3;p=gnulib.git maint.mk: fix po-file syntax-check rule * top/maint.mk (sc_po_check): Fix fatal typo in yesterday's change. Patch by Bruno Haible. --- diff --git a/ChangeLog b/ChangeLog index 903adf6d0..1b42d3c7b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2011-03-19 Jim Meyering + + maint.mk: fix po-file syntax-check rule + * top/maint.mk (sc_po_check): Fix fatal typo in yesterday's change. + Patch by Bruno Haible. + 2011-03-19 Bruno Haible socklen: Update comment. diff --git a/top/maint.mk b/top/maint.mk index 6dde0227d..fd192c97d 100644 --- a/top/maint.mk +++ b/top/maint.mk @@ -961,7 +961,7 @@ sc_po_check: grep -E -v '^(#|$$)' $(po_file) \ | grep -v '^src/false\.c$$' | sort > $@-1; \ files=; \ - for file in $$($(VC_LIST_EXCEPT)) $(srcdir)lib/*.[ch]; do \ + for file in $$($(VC_LIST_EXCEPT)) $(srcdir)/lib/*.[ch]; do \ test -r $$file || continue; \ case $$file in \ *.m4|*.mk) continue ;; \