Changeset 401f81e for CLFS2


Ignore:
Timestamp:
08/16/2006 05:42:54 PM (18 years ago)
Author:
Manuel Canales Esparcia <manuel@…>
Branches:
2.3, 2.3.x, 2.4, ablfs, ablfs-more, legacy, new_features, trunk
Children:
fdb330a
Parents:
5be3651
Message:

Ported Makefile clean-up and 0/1 to n/y migration code from experimental.
There is no obvious bugs, let users to find hidden bugs.

Location:
CLFS2
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • CLFS2/clfs2.xsl

    r5be3651 r401f81e  
    1818
    1919  <!-- Install vim-lang package? -->
    20   <xsl:param name="vim-lang" select="1"/>
     20  <xsl:param name="vim-lang" select="y"/>
    2121
    2222  <!-- Time zone -->
     
    7676            <xsl:if test="sect2[@role='installation']">
    7777              <xsl:text>cd $PKGDIR&#xA;</xsl:text>
    78               <xsl:if test="@id='ch-system-vim' and $vim-lang = '1'">
     78              <xsl:if test="@id='ch-system-vim' and $vim-lang = 'y'">
    7979                <xsl:text>tar -xvf ../vim-&vim-version;-lang.* --strip-components=1&#xA;</xsl:text>
    8080              </xsl:if>
  • CLFS2/config

    r5be3651 r401f81e  
    3434
    3535# Get the kernel package and patches even if no configutation file
    36 # has been supplied? 0(no)/1(yes)
    37 GETKERNEL=0
     36# has been supplied? n(no)/y(yes)
     37GETKERNEL=n
    3838
    3939#--- Book's sources directory
  • CLFS2/master.sh

    r5be3651 r401f81e  
    216216    # Skip alsp temp-perl for iterative runs
    217217    case $this_script in
    218       *stripping*) [[ "$STRIP" = "0" ]] && continue ;;
     218      *stripping*) [[ "$STRIP" = "n" ]] && continue ;;
    219219    esac
    220220
     
    404404
    405405  # Add SBU-disk_usage report target if required
    406   if [[ "$REPORT" = "1" ]] ; then wrt_report ; fi
     406  if [[ "$REPORT" = "y" ]] ; then wrt_report ; fi
    407407
    408408}
     
    430430$HEADER
    431431
    432 SRC= /sources
    433 MOUNT_PT= $BUILDDIR
    434 PKG_LST= $PKG_LST
    435 LUSER= $LUSER
    436 LGROUP= $LGROUP
     432SRC         = /sources
     433MOUNT_PT    = $BUILDDIR
     434PKG_LST     = $PKG_LST
     435LUSER       = $LUSER
     436LGROUP      = $LGROUP
     437SCRIPT_ROOT = $SCRIPT_ROOT
     438
     439BASEDIR    = \$(MOUNT_PT)
     440SRCSDIR    = \$(BASEDIR)/sources
     441CMDSDIR    = \$(BASEDIR)/\$(SCRIPT_ROOT)/$PROGNAME-commands
     442LOGDIR     = \$(BASEDIR)/\$(SCRIPT_ROOT)/logs
     443TESTLOGDIR = \$(BASEDIR)/\$(SCRIPT_ROOT)/test-logs
     444
     445SU_LUSER   = su - \$(LUSER) -c
     446PRT_DU     = echo -e "\nKB: \`du -skx --exclude=jhalfs \$(MOUNT_PT)\`\n"
     447LUSER_HOME = /home/\$(LUSER)
    437448
    438449include makefile-functions
Note: See TracChangeset for help on using the changeset viewer.