diff top/maint.mk @ 12771:a11a67aec9bf

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.
author Jim Meyering <meyering@redhat.com>
date Sat, 23 Jan 2010 22:08:55 +0100
parents f12919d53a60
children 1fedbaac4fa9
line wrap: on
line diff
--- a/top/maint.mk	Sat Jan 23 06:06:31 2010 -0800
+++ b/top/maint.mk	Sat Jan 23 22:08:55 2010 +0100
@@ -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)/||' \