Changeset 6c83a56


Ignore:
Timestamp:
09/21/2013 10:38:16 AM (11 years ago)
Author:
Pierre Labastie <pierre@…>
Branches:
ablfs
Children:
90bfb42e
Parents:
df08148
Message:

Merge trunk r3721,3722

Files:
3 edited

Legend:

Unmodified
Added
Removed
  • Config.in

    rdf08148 r6c83a56  
    4545        choice
    4646                prompt  "Release"
    47                 default relSVN
     47                default relSVN  if BOOK_LFS || BOOK_HLFS
     48                default relGIT  if BOOK_CLFS || BOOK_CLFS2 || BOOK_CLFS3
    4849                config  relSVN
    4950                        bool    "SVN"
     51                        depends on BOOK_LFS || BOOK_HLFS
    5052                        help
    5153                                #-- Current development version as in trunk
     54
     55                config  relGIT
     56                        bool    "GIT"
     57                        depends on BOOK_CLFS || BOOK_CLFS2 || BOOK_CLFS3
     58                        help
     59                                #-- Current development git master branch
    5260
    5361                config  WORKING_COPY
     
    6068                        bool    "Branch or stable book" if !BOOK_CLFS2 && !BOOK_CLFS3
    6169                        help
    62                                 #-- A supported SVN branch or stable released book
     70                                #-- A supported SVN/GIT branch or stable released book
    6371        endchoice
    6472
     
    136144
    137145                config  DATA_64
    138                         bool    "64-bit"        if !ARCH_PPC
     146                        bool    "64-bit"
    139147
    140148                config  DATA_MULTI
     
    251259                default "mips64-unknown-linux-uclibc"   if  BOOK_CLFS3 && PROC_mips   && DATA_64
    252260
    253                 default "powerpc-unknown-linux-gnu"     if  ARCH_PPC   && DATA_32
    254                 default "powerpc64-unknown-linux-gnu"   if  ARCH_PPC   && DATA_MULTI
     261                default "powerpc-unknown-linux-gnu"     if  ARCH_PPC && DATA_32
     262                default "powerpc64-unknown-linux-gnu"   if  ARCH_PPC && (DATA_MULTI || DATA-64)
    255263
    256264                default "sparc-unknown-linux-gnu"       if  ARCH_SPARC && DATA_32
     
    312320                default "ppc"           if ARCH_PPC   && DATA_32
    313321                default "ppc64"         if ARCH_PPC   && DATA_MULTI
     322                default "ppc64-64"      if ARCH_PPC   && DATA_64
    314323
    315324                default "sparc"         if ARCH_SPARC && DATA_32
  • LFS/master.sh

    rdf08148 r6c83a56  
    7979
    8080    # If no testsuites are run, then TCL, Expect, DejaGNU and Check
    81     # aren't needed.
     81    # aren't needed (but building them does not hurt).
    8282    # Fix also locales creation when running chapter05 testsuites (ugly)
    8383    case "${this_script}" in
    84       *tcl)       [[ "${TEST}" = "0" ]] && continue ;;
    85       *expect)    [[ "${TEST}" = "0" ]] && continue ;;
    86       *dejagnu)   [[ "${TEST}" = "0" ]] && continue ;;
    87       *check)     [[ "${TEST}" = "0" ]] && continue ;;
     84#      *tcl)       [[ "${TEST}" = "0" ]] && continue ;;
     85#      *expect)    [[ "${TEST}" = "0" ]] && continue ;;
     86#      *dejagnu)   [[ "${TEST}" = "0" ]] && continue ;;
     87#      *check)     [[ "${TEST}" = "0" ]] && continue ;;
    8888      *stripping) [[ "${STRIP}" = "n" ]] && continue ;;
    8989      *glibc)     [[ "${TEST}" = "3" ]] && \
  • common/libs/func_download_pkgs

    rdf08148 r6c83a56  
    4040      # Skip some packages if they aren't needed
    4141    case $line in
    42       */check* | */tcl* | */expect* | */dejagnu* | */tree* | */gcc-testsuite* )
     42      */tree* | */gcc-testsuite* ) #unneeded now?
    4343            [[ "$TEST" = "0" ]] && continue
    4444          ;;
Note: See TracChangeset for help on using the changeset viewer.