Fix Makefile typos

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@6846 af4574ff-66df-0310-9fd7-8a98e5e911e0
This commit is contained in:
Dan Nichilson 2007-07-07 13:26:44 +00:00
parent 97f6e38146
commit cdd254a7f1

View File

@ -105,7 +105,7 @@ test-links: validxml
--output $(BASEDIR)/test-links stylesheets/wget-list.xsl \
/tmp/lfs-full.xml
@echo "Cheking URLs, first pass..."
@echo "Checking URLs, first pass..."
$(Q)rm -f $(BASEDIR)/{good,bad,true_bad}_urls
$(Q)for URL in `cat $(BASEDIR)/test-links`; do \
wget --spider --tries=2 --timeout=60 $$URL >>/dev/null 2>&1; \
@ -114,7 +114,7 @@ test-links: validxml
fi; \
done
@echo "Cheking URLs, second pass..."
@echo "Checking URLs, second pass..."
$(Q)for URL2 in `cat $(BASEDIR)/bad_urls`; do \
wget --spider --tries=2 --timeout=60 $$URL2 >>/dev/null 2>&1; \
if test $$? -ne 0 ; then echo $$URL2 >> $(BASEDIR)/true_bad_urls ; \