소스 검색

Fix 'make validate' Makefile rule
Add Perl version check to Host System Requirements

git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@8563 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

Bruce Dubbs 17 년 전
부모
커밋
eb745c8b3d
3개의 변경된 파일7개의 추가작업 그리고 0개의 파일을 삭제
  1. 2 0
      Makefile
  2. 4 0
      chapter01/changelog.xml
  3. 1 0
      prologue/hostreqs.xml

+ 2 - 0
Makefile

@@ -108,6 +108,8 @@ dump-commands: validxml
 	   stylesheets/dump-commands.xsl $(RENDERTMP)/lfs-full.xml
 
 validate:
+	@echo "Processing bootscripts..."
+	$(Q)bash process-scripts.sh $(RENDERTMP)
 	@echo "Validating the book..."
 	$(Q)xmllint --noout --nonet --xinclude --postvalid index.xml
 

+ 4 - 0
chapter01/changelog.xml

@@ -39,6 +39,10 @@
     <listitem>
       <para>2008-10-03</para>
       <itemizedlist>
+        <listitem>
+          <para>[bdubs] - Added version check for Perl in Host System 
+					REquirements.</para>
+        </listitem>
         <listitem>
           <para>[randy] - Updated GCC to 4.3.2 which includes adding the
           GMP-4.2.4 and MPFR-2.3.2 packages. This new version of GCC requires

+ 1 - 0
prologue/hostreqs.xml

@@ -156,6 +156,7 @@ gzip --version | head -n1
 cat /proc/version
 make --version | head -n1
 patch --version | head -n1
+perl -V:version
 sed --version | head -n1
 tar --version | head -n1
 makeinfo --version | head -n1