[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
FYI: unquote-distcleancheck_listfiles.patch
From: |
Alexandre Duret-Lutz |
Subject: |
FYI: unquote-distcleancheck_listfiles.patch |
Date: |
30 Dec 2001 14:52:30 +0100 |
User-agent: |
Gnus/5.0808 (Gnus v5.8.8) Emacs/21.1 |
>>> "Yann" == Yann Droneaud <address@hidden> writes:
Yann> Hi,
Yann> I notice some error messages at the end of make distcheck.
Yann> It's not fatal, but it shows that a feature is not working.
[...]
Yann> test `"find . -type f -print" | wc -l` -eq 0 \
[...]
Yann> /bin/sh: find . -type f -print: command not found
[...]
Yann> It's seems that "find . -type f -print" is not valid
Yann> at least for my /bin/sh. I think the double quotes must be removed.
[...]
Oops. Thanks!
Index: ChangeLog
===================================================================
RCS file: /cvs/automake/automake/ChangeLog,v
retrieving revision 1.1686
diff -u -r1.1686 ChangeLog
--- ChangeLog 2001/12/30 00:19:41 1.1686
+++ ChangeLog 2001/12/30 13:45:46
@@ -1,3 +1,8 @@
+2001-12-30 Alexandre Duret-Lutz <address@hidden>
+
+ * lib/am/distdir.am (distcleancheck_listfiles): Unquote.
+ Reported by Yann Droneaud.
+
2001-12-29 Tom Tromey <address@hidden>
For PR automake/266:
Index: lib/am/distdir.am
===================================================================
RCS file: /cvs/automake/automake/lib/am/distdir.am,v
retrieving revision 1.28
diff -u -r1.28 distdir.am
--- distdir.am 2001/12/05 17:26:46 1.28
+++ distdir.am 2001/12/30 13:45:46
@@ -287,7 +287,7 @@
## 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" ; \
--
Alexandre Duret-Lutz
- make distcheck error, Yann Droneaud, 2001/12/27
- FYI: unquote-distcleancheck_listfiles.patch,
Alexandre Duret-Lutz <=