# HG changeset patch # User Jim Meyering # Date 1264280935 -3600 # Node ID a11a67aec9bf315235e12909f69ddce3304e5fea # Parent f2a8a7dd89bb279c272b50517abae546e55b8453 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 --- 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 --- a/top/maint.mk +++ b/top/maint.mk @@ -43,7 +43,7 @@ # 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)/||' \