From 40e3d30200cc9cd166c8af835d9ba3fc05d84024 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Wed, 26 Mar 2008 00:06:08 +0100 Subject: [PATCH] gnumakefile: Don't double-quote-expand $(VPATH) value. * modules/gnumakefile (clean-GNUmakefile): Use single quotes. --- ChangeLog | 7 ++++++- modules/gnumakefile | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index fe72f6fab..3286c9b91 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2008-03-26 Jim Meyering + + gnumakefile: Don't double-quote-expand $(VPATH) value. + * modules/gnumakefile (clean-GNUmakefile): Use single quotes. + 2008-03-24 Eric Blake Alter GNUmakefile to install into top directory. @@ -31,7 +36,7 @@ * doc/gnulib-tool.texi (gettextize and autopoint): New section. 2008-03-23 Eric Blake - Bruno Haible + Bruno Haible Install files from top/ in the destination directory. * gnulib-tool (func_get_automake_snippet): Synthesize an EXTRA_DIST diff --git a/modules/gnumakefile b/modules/gnumakefile index af853442c..85597708e 100644 --- a/modules/gnumakefile +++ b/modules/gnumakefile @@ -21,7 +21,7 @@ m4_if(m4_version_compare([2.61a.100], Makefile.am: distclean-local: clean-GNUmakefile clean-GNUmakefile: - if test x"$(VPATH)" != x ; then rm -f $(top_srcdir)/GNUmakefile ; fi + if test x'$(VPATH)' != x ; then rm -f $(top_srcdir)/GNUmakefile ; fi Include: -- 2.11.0