From: Jim Meyering Date: Sat, 23 Jan 2010 21:08:55 +0000 (+0100) Subject: maint.mk: fix syntax-check in a non-srcdir build directory X-Git-Tag: v0.1~4716 X-Git-Url: http://erislabs.org.uk/gitweb/?a=commitdiff_plain;h=86a209c20f700b062b4ab161f586f40c94485c61;p=gnulib.git maint.mk: fix syntax-check in a non-srcdir build directory * top/maint.mk (_dot_escaped_srcdir): Remove erroneous backslash, introduced in my 2010-01-21 commit, a6da6c45. Reported by Eric Blake. --- diff --git a/ChangeLog b/ChangeLog index 0ced685bd..e85062f69 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2010-01-23 Jim Meyering + + maint.mk: fix syntax-check in a non-srcdir build directory + * top/maint.mk (_dot_escaped_srcdir): Remove erroneous backslash, + introduced in my 2010-01-21 commit, a6da6c45. Reported by Eric Blake. + 2010-01-22 Jim Meyering userspec: add unit tests diff --git a/top/maint.mk b/top/maint.mk index 1ef28d391..314abc11b 100644 --- a/top/maint.mk +++ b/top/maint.mk @@ -43,7 +43,7 @@ VC_LIST_ALWAYS_EXCLUDE_REGEX ?= ^$$ # This is to preprocess robustly the output of $(VC_LIST), so that even # when $(srcdir) is a pathological name like "....", the leading sed command # removes only the intended prefix. -_dot_escaped_srcdir = $(subst .,\\.,$(srcdir)) +_dot_escaped_srcdir = $(subst .,\.,$(srcdir)) VC_LIST_EXCEPT = \ $(VC_LIST) | sed 's|^$(_dot_escaped_srcdir)/||' \