Changeset bcadcfe


Ignore:
Timestamp:
01/23/2005 11:54:35 AM (19 years ago)
Author:
Manuel Canales Esparcia <manuel@…>
Children:
8ac05079
Parents:
fae9234
Message:

Changed the Makefile to do a by-arch validaton.

git-svn-id: http://svn.linuxfromscratch.org/LFS/branches/multi-arch/BOOK@4555 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

File:
1 edited

Legend:

Unmodified
Added
Removed
  • Makefile

    rfae9234 rbcadcfe  
    160160
    161161validate:
    162         xmllint --noout --nonet --xinclude --postvalid index.xml
     162# x86
     163        xsltproc --xinclude --nonet --stringparam profile.condition pdf -stringparam profile.arch x86 \
     164                 --output index-x86.xml stylesheets/lfs-profile.xsl index.xml
     165        xmllint --noout --nonet --postvalid index-x86.xml
    163166
     167# alpha
     168        xsltproc --xinclude --nonet --stringparam profile.condition pdf -stringparam profile.arch alpha \
     169                 --output index-alpha.xml stylesheets/lfs-profile.xsl index.xml
     170        xmllint --noout --nonet --postvalid index-alpha.xml
     171
     172# ppc
     173        xsltproc --xinclude --nonet --stringparam profile.condition pdf -stringparam profile.arch ppc \
     174                 --output index-ppc.xml stylesheets/lfs-profile.xsl index.xml
     175        xmllint --noout --nonet --postvalid index-ppc.xml
     176
     177# raq2
     178        xsltproc --xinclude --nonet --stringparam profile.condition pdf -stringparam profile.arch raq2 \
     179                 --output index-raq2.xml stylesheets/lfs-profile.xsl index.xml
     180        xmllint --noout --nonet --postvalid index-raq2.xml
     181
     182# clean-up
     183        rm index-x86.xml index-alpha.xml index-ppc.xml index-raq2.xml
     184
Note: See TracChangeset for help on using the changeset viewer.