# HG changeset patch # User Jim Meyering # Date 1206486368 -3600 # Node ID b5c5347b45935e405261046810db42a49111b783 # Parent 23c2f4de4b25e57c6b5666fe475c9ccfe70d51e3 gnumakefile: Don't double-quote-expand $(VPATH) value. * modules/gnumakefile (clean-GNUmakefile): Use single quotes. diff --git a/ChangeLog b/ChangeLog --- 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 --- a/modules/gnumakefile +++ b/modules/gnumakefile @@ -21,7 +21,7 @@ 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: