Changeset 8eb3fe4 for Makefile


Ignore:
Timestamp:
04/01/2019 05:00:45 PM (5 years ago)
Author:
Thomas Trepl <thomas@…>
Branches:
multilib-10.1
Children:
7d9f881
Parents:
1fa2099
Message:

First apply of multilib-patch of April 1st, 2019

git-svn-id: http://svn.linuxfromscratch.org/LFS/branches/multilib@11566 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

File:
1 edited

Legend:

Unmodified
Added
Removed
  • Makefile

    r1fa2099 r8eb3fe4  
    3535endif
    3636
     37ifndef ARCH
     38  ARCH = default
     39endif
     40ifneq ($(ARCH), default)
     41  ifneq ($(ARCH), multilib)
     42    $(error ARCH must be either 'default' (default if unset) or 'multilib'.)
     43  endif
     44endif
     45
    3746book: validate profile-html
    3847        @echo "Generating chunked XHTML files at $(BASEDIR)/ ..."
     
    131140                --output $(RENDERTMP)/lfs-html2.xml   \
    132141                --stringparam profile.revision $(REV) \
     142                --stringparam profile.arch $(ARCH)    \
    133143                stylesheets/lfs-xsl/profile.xsl       \
    134144                index.xml
     
    161171#       $(Q)xsltproc --nonet --xinclude                    \
    162172#                --stringparam profile.revision $(REV) \
     173#                --stringparam profile.arch $(ARCH)    \
    163174#                --output $(RENDERTMP)/sysd-wget.xml   \
    164175#                stylesheets/lfs-xsl/profile.xsl       \
     
    178189        $(Q)xsltproc --nonet --xinclude                    \
    179190                --stringparam profile.revision $(REV) \
     191                --stringparam profile.arch $(ARCH) \
    180192                --output $(RENDERTMP)/sysv-md5sum.xml \
    181193                stylesheets/lfs-xsl/profile.xsl       \
     
    195207#      --output $(RENDERTMP)/lfs-html.xml    \
    196208#      --stringparam profile.revision $(REV) \
     209#      --stringparam profile.arch $(ARCH)    \
    197210#      stylesheets/lfs-xsl/profile.xsl       \
    198211#      $(RENDERTMP)/lfs-full.xml
Note: See TracChangeset for help on using the changeset viewer.