Changeset 93fd2d0 for LFS/master.sh


Ignore:
Timestamp:
02/07/2012 10:30:26 PM (12 years ago)
Author:
Matthew Burgess <matthew@…>
Branches:
2.4, ablfs, ablfs-more, legacy, new_features, trunk
Children:
e47edcf
Parents:
b515be7
Message:

Fix ICA build and a couple of other miscellaneous issues. Patch courtesy of Pierre Labastie.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • LFS/master.sh

    rb515be7 r93fd2d0  
    173173    for script in chapter06$N/* ; do
    174174      # Overwrite existing symlinks, files, and dirs
    175       sed -e 's/ln -sv/&f/g' \
    176           -e 's/mv -v/&f/g' \
    177           -e 's/mkdir -v/&p/g' -i ${script}
     175      sed -e 's/ln *-sv/&f/g' \
     176          -e 's/mv *-v/&f/g' \
     177          -e 's/mkdir *-v/&p/g' -i ${script}
     178      # Suppress the mod of "test-installation.pl" because now
     179      # the library path points to /usr/lib
     180      if [[ ${script} =~ glibc ]]; then
     181          sed '/DL=/,/unset DL/d' -i ${script}
     182      fi
    178183      # Rename the scripts
    179184      mv ${script} ${script}$N
     
    338343            fi
    339344            CHROOT_Unpack "$pkg_tarball"
     345            # If using optimizations, use MAKEFLAGS (unless blacklisted)
     346            # no setting of CFLAGS and friends.
     347            [[ "$OPTIMIZE" != "0" ]] &&  wrt_makeflags "$name"
    340348       ;;
    341349    esac
Note: See TracChangeset for help on using the changeset viewer.