From: Alexandre Duret-Lutz Date: Sun, 30 Dec 2001 13:53:01 +0000 (+0000) Subject: * lib/am/distdir.am (distcleancheck_listfiles): Unquote. X-Git-Tag: Release-1-5d~77 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=275124b7122cf12e780725f43e5233611ff73c56;p=thirdparty%2Fautomake.git * lib/am/distdir.am (distcleancheck_listfiles): Unquote. Reported by Yann Droneaud. --- diff --git a/ChangeLog b/ChangeLog index 70d5faedd..bae4fe4a2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2001-12-30 Alexandre Duret-Lutz + + * lib/am/distdir.am (distcleancheck_listfiles): Unquote. + Reported by Yann Droneaud. + 2001-12-29 Tom Tromey For PR automake/266: diff --git a/lib/am/distdir.am b/lib/am/distdir.am index 854164f2c..0093f2afe 100644 --- a/lib/am/distdir.am +++ b/lib/am/distdir.am @@ -287,7 +287,7 @@ distcheck: dist ## Define distcleancheck_listfiles and distcleancheck separately ## from distcheck, so that they can be overriden by the user. .PHONY: distcleancheck -distcleancheck_listfiles = "find . -type f -print" +distcleancheck_listfiles = find . -type f -print distcleancheck: distclean if test '$(srcdir)' = . ; then \ echo "ERROR: distcleancheck can only run from a VPATH build" ; \