Changeset a241c33 for LFS/master.sh


Ignore:
Timestamp:
04/06/2006 10:41:47 PM (18 years ago)
Author:
Manuel Canales Esparcia <manuel@…>
Branches:
1.0, 2.3, 2.3.x, 2.4, ablfs, ablfs-more, legacy, new_features, trunk
Children:
775945f
Parents:
877cc6a
Message:

Fixed locales creation when running chapter05 test suites.
Fixed the run of changingowner script on udev_update branch.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • LFS/master.sh

    r877cc6a ra241c33  
    7070
    7171    # If no testsuites will be run, then TCL, Expect and DejaGNU aren't needed
     72    # Fix also locales creation when running chapter05 testsuites (ugly)
    7273    case "${this_script}" in
    7374      *tcl)       [[ "${TEST}" = "0" ]] && continue ;;
     
    7576      *dejagnu)   [[ "${TEST}" = "0" ]] && continue ;;
    7677      *stripping) [[ "${STRIP}" = "0" ]] && continue ;;
     78      *glibc)     [[ "${TEST}" = "3" ]] && \
     79                  sed -i 's@/usr/lib/locale@/tools&@' $file
    7780    esac
    7881
     
    115118    # Insert date and disk usage at the top of the log file, the script run
    116119    # and date and disk usage again at the bottom of the log file.
    117     wrt_run_as_su "${this_script}" "$file"
     120    # The changingowner script must be run as root.
     121    case "${this_script}" in
     122      *changingowner)  wrt_run_as_root    "${this_script}" "$file" ;;
     123      *)               wrt_run_as_su      "${this_script}" "$file" ;;
     124    esac
    118125
    119126    # Remove the build directory(ies) except if the package build fails
Note: See TracChangeset for help on using the changeset viewer.