Changeset 10c8b78 for CLFS/master.sh


Ignore:
Timestamp:
12/05/2006 03:25:00 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:
2512414
Parents:
6bb080e
Message:

More compare and related fixes.
Test build in progress.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • CLFS/master.sh

    r6bb080e r10c8b78  
    462462          -e 's/mv -v/&f/g' \
    463463          -e 's/mkdir -v/&p/g' -i ${script}
     464      # Rename the scripts
     465      mv ${script} ${script}$N
    464466    done
    465467    # Remove Bzip2 binaries before make install
    466     sed -e 's@make install@rm -vf /usr/bin/bz*\n&@' -i final-system$N/*-bzip2
     468    sed -e 's@make install@rm -vf /usr/bin/bz*\n&@' -i final-system$N/*-bzip2$N
    467469    # Delete *old Readline libraries just after make install
    468     sed -e 's@make install@&\nrm -v /lib/lib{history,readline}*old@' -i final-system$N/*-readline
     470    sed -e 's@make install@&\nrm -v /lib/lib{history,readline}*old@' -i final-system$N/*-readline$N
    469471  fi
    470472
     
    492494                                  -e 's@-64@@' \
    493495                                  -e 's@64@@' \
    494                                   -e 's@n32@@'`
     496                                  -e 's@n32@@' \
     497                                  -e 's,'$N',,'`
    495498
    496499    # Find the version of the command files, if it corresponds with the building of
     
    508511    # Append each name of the script files to a list (this will become
    509512    # the names of the targets in the Makefile
    510     basicsystem="$basicsystem ${this_script}${N}"
     513    basicsystem="$basicsystem ${this_script}"
    511514
    512515    #--------------------------------------------------------------------#
     
    516519    # Drop in the name of the target on a new line, and the previous target
    517520    # as a dependency. Also call the echo_message function.
    518     CHROOT_wrt_target "${this_script}${N}" "$PREV"
     521    CHROOT_wrt_target "${this_script}" "$PREV"
    519522
    520523    # If $pkg_tarball isn't empty, we've got a package...
     
    524527      case $name in
    525528        binutils | gcc | glibc )
    526           [[ "$TEST" != "0" ]] && CHROOT_wrt_test_log "${this_script}${N}"
     529          [[ "$TEST" != "0" ]] && CHROOT_wrt_test_log "${this_script}"
    527530          ;;
    528531        * )
    529           [[ "$TEST" = "2" ]] || [[ "$TEST" = "3" ]] && CHROOT_wrt_test_log "${this_script}${N}"
     532          [[ "$TEST" = "2" ]] || [[ "$TEST" = "3" ]] && CHROOT_wrt_test_log "${this_script}"
    530533          ;;
    531534      esac
     
    546549    #
    547550    # Keep the script file name for Makefile dependencies.
    548     PREV=${this_script}${N}
     551    PREV=${this_script}
    549552    # Set system_build envar for iteration targets
    550553    system_build=$basicsystem
Note: See TracChangeset for help on using the changeset viewer.