From d8480865ae64dfc53a8108f998401672574ed2bf Mon Sep 17 00:00:00 2001 From: Markus Armbruster Date: Mon, 23 Jan 2006 21:33:13 +0000 Subject: [PATCH] (info.nr/all, info.html/all.html): Don't pick up random junk from the filesystem. --- Make.mk | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Make.mk b/Make.mk index f69ea03c..ed42e075 100644 --- a/Make.mk +++ b/Make.mk @@ -257,12 +257,12 @@ $(ttop): $(tsubj) perl $(srcdir)/info/mktop.pl $@ $(filter %.t, $^) info.nr/all: $(filter-out info.nr/all, $(info.nr)) - (cd info.nr && ls -CF) >$@ -# FIXME should use $^ and not ls + (cd info.nr && ls -CF $(info)) >$@ +# FIXME shouldn't use ls info.html/all.html: $(filter-out info.html/all.html, $(info.html)) info/ls2html.pl - (cd info.html && ls -CF *.html) | expand | perl $(filter %.pl, $^) >$@ -# FIXME should use $^ and not ls + (cd info.html && ls -CF $(notdir $(info.html))) | expand | perl $(filter %.pl, $^) >$@ +# FIXME shouldn't use ls $(info.nr): info/CRT.MAC info/INFO.MAC info/Blank.awk | info.nr