Changeset 3f858ca


Ignore:
Timestamp:
03/10/2006 02:27:12 PM (18 years ago)
Author:
George Boudreau <georgeb@…>
Branches:
experimental
Children:
bef0a98
Parents:
1ce084e
Message:

Housekeeping only

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • LFS/master.sh

    r1ce084e r3f858ca  
    9292    if [ -z $PREV ] ; then PREV=022-settingenvironment ; fi
    9393
     94    #--------------------------------------------------------------------#
     95    #         >>>>>>>> START BUILDING A Makefile ENTRY <<<<<<<<          #
     96    #--------------------------------------------------------------------#
     97    #
    9498    # Drop in the name of the target on a new line, and the previous target
    9599    # as a dependency. Also call the echo_message function.
     
    108112      fi
    109113
    110       # Insert instructions for unpacking the package and to set
    111       # the PKGDIR variable.
     114      # Insert instructions for unpacking the package and to set the PKGDIR variable.
    112115      wrt_unpack "$FILE"
    113116      echo -e '\ttrue' >> $MKFILE.tmp
     
    127130    # if it's already been made.
    128131    echo -e '\t@touch $@' >> $MKFILE.tmp
     132    #
     133    #--------------------------------------------------------------------#
     134    #              >>>>>>>> END OF Makefile ENTRY <<<<<<<<               #
     135    #--------------------------------------------------------------------#
    129136
    130137    # Keep the script file name for Makefile dependencies.
     
    159166    name=`echo ${this_script} | sed -e 's@[0-9]\{3\}-@@'`
    160167
     168    #--------------------------------------------------------------------#
     169    #         >>>>>>>> START BUILDING A Makefile ENTRY <<<<<<<<          #
     170    #--------------------------------------------------------------------#
     171    #
    161172    # Drop in the name of the target on a new line, and the previous target
    162173    # as a dependency. Also call the echo_message function.
     
    174185    fi
    175186
    176     if [[ `_IS_ ${this_script} glibc` ]] ; then  # For Glibc we need to set TIMEZONE envar.
    177       wrt_export_timezone
    178     elif [[ `_IS_ ${this_script} groff` ]] ; then  # For Groff we need to set PAGE envar.
    179       wrt_export_pagesize
    180     fi
     187    case "${this_script}" in
     188      *glibc*  ) wrt_export_timezone ;; # For Glibc we need to set TIMEZONE envar.
     189      *groff*  ) wrt_export_pagesize ;; # For Groff we need to set PAGE envar.
     190    esac
    181191
    182192    # In the mount of kernel filesystems we need to set LFS
     
    196206    # if it's already been made.
    197207    echo -e '\t@touch $@' >> $MKFILE.tmp
     208    #
     209    #--------------------------------------------------------------------#
     210    #              >>>>>>>> END OF Makefile ENTRY <<<<<<<<               #
     211    #--------------------------------------------------------------------#
    198212
    199213    # Keep the script file name for Makefile dependencies.
     
    227241    chapter789="$chapter789 ${this_script}"
    228242
     243    #--------------------------------------------------------------------#
     244    #         >>>>>>>> START BUILDING A Makefile ENTRY <<<<<<<<          #
     245    #--------------------------------------------------------------------#
     246    #
    229247    # Drop in the name of the target on a new line, and the previous target
    230248    # as a dependency. Also call the echo_message function.
     
    268286    # if it's already been made.
    269287    echo -e '\t@touch $@' >> $MKFILE.tmp
     288    #
     289    #--------------------------------------------------------------------#
     290    #              >>>>>>>> END OF Makefile ENTRY <<<<<<<<               #
     291    #--------------------------------------------------------------------#
    270292
    271293    # Keep the script file name for Makefile dependencies.
  • common/func_validate_configs.sh

    r1ce084e r3f858ca  
    1818inline_doc
    1919
    20   local -r  lfs_PARAM_LIST="BUILDDIR HPKG TEST STRIP VIMLANG PAGE RUNMAKE"
     20  local -r  lfs_PARAM_LIST=""
    2121  local -r blfs_PARAM_LIST="BUILDDIR TEST DEPEND"
    22   local -r hlfs_PARAM_LIST="BUILDDIR HPKG MODEL TEST STRIP VIMLANG PAGE GRSECURITY_HOST RUNMAKE TIMEZONE"
    23   local -r clfs_PARAM_LIST="ARCH BOOTMINIMAL RUNMAKE MKFILE"
     22  local -r hlfs_PARAM_LIST="MODEL GRSECURITY_HOST"
     23  local -r clfs_PARAM_LIST="ARCH BOOTMINIMAL"
    2424  local -r global_PARAM_LIST="BUILDDIR HPKG RUNMAKE TEST STRIP PAGE TIMEZONE VIMLANG"
    2525
Note: See TracChangeset for help on using the changeset viewer.