Changeset 4b54394 for LFS/master.sh


Ignore:
Timestamp:
01/08/2011 12:17:08 AM (13 years ago)
Author:
Thomas Pegg <thomasp@…>
Branches:
2.3, 2.4, ablfs, ablfs-more, legacy, new_features, trunk
Children:
a7e1348
Parents:
d8006a00
Message:

Add handling for the different name of the xz-utils tarball

File:
1 edited

Legend:

Unmodified
Added
Removed
  • LFS/master.sh

    rd8006a00 r4b54394  
    139139    # (so we can review config.cache, config.log, etc.)
    140140    if [ "$pkg_tarball" != "" ] ; then
    141       LUSER_RemoveBuildDirs "$name"
     141        case "${name}" in
     142        *xz-utils) LUSER_RemoveBuildDirs "xz" ;;
     143        *) LUSER_RemoveBuildDirs "$name" ;;
     144        esac
    142145    fi
    143146
     
    263266    # except if the package build fails.
    264267    if [ "$pkg_tarball" != "" ] ; then
    265       CHROOT_wrt_RemoveBuildDirs "$name"
     268      case "${name}" in
     269        *xz-utils) CHROOT_wrt_RemoveBuildDirs "xz" ;;
     270        *) CHROOT_wrt_RemoveBuildDirs "$name" ;;
     271      esac
    266272      if [ "${INSTALL_LOG}" = "y" ] && [ "x${N}" = "x" ] ; then
    267273        CHROOT_wrt_LogNewFiles "$name"
Note: See TracChangeset for help on using the changeset viewer.