Changeset 47fddc8 for CLFS2


Ignore:
Timestamp:
08/12/2006 07:59:11 PM (18 years ago)
Author:
George Boudreau <georgeb@…>
Branches:
experimental
Children:
3fa20d4
Parents:
54f4782
Message:

Change bool parameter definitions from 0/1 to y/n to match the new menu app

Location:
CLFS2
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • CLFS2/clfs2.xsl

    r54f4782 r47fddc8  
    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

    r54f4782 r47fddc8  
    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

    r54f4782 r47fddc8  
    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}
Note: See TracChangeset for help on using the changeset viewer.