Changeset 93fd2d0


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.

Files:
5 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
  • common/blfs-tool-deps/905-docbook-xml

    rb515be7 r93fd2d0  
    103103    $PKG_DEST/etc/xml/catalog
    104104done
    105 export PKGDIR=/sources/docbook-xml
    106 packInstall
     105if ! [ -z "$PKG_DEST" ]; then
     106  export PKGDIR=/sources/docbook-xml
     107  packInstall
     108fi
    107109rm -rf $PKG_DEST
    108110cd ..
  • common/libs/func_blfs_deps

    rb515be7 r93fd2d0  
    197197    case $name in
    198198      docbook-xml )  pkg_ver=DocBook-4.5 ;;
    199       lynx )  pkg_ver=lynx-2.8.7 ;;
     199      lynx )  pkg_ver=lynx-2.8.7rel.2 ;;
    200200      tidy )  pkg_ver=html-tidy-cvs_20101110 ;;
    201201      unzip ) pkg_ver=unzip-6.0 ;;
     202      sqlite ) pkg_ver=sqlite-3.7.8 ;;
    202203      * )     pkg_ver=$(echo $pkg_tarball | sed -e 's/.tar.*//;s/.tgz//;s/.zip//') ;;
    203204    esac
  • common/libs/func_check_version.sh

    rb515be7 r93fd2d0  
    9191  check_version "3.2"     "$BASH_VERSION"       "BASH"
    9292  check_version "4.1.2"   "`gcc -dumpversion`"  "GCC" 
    93   libcLib="`find /lib /lib64 -name libc.so.6 -print`"
    94   libcVer="`/${libcLib} | head -n1`"
    95   libcVer="${libcVer##*version }"
    96   check_version "2.5.1"   "${libcVer%%,*}"        "GLIBC"
     93  check_version "2.5.1"   "$(ldd --version  | head -n1 | awk '{print $NF}')"        "GLIBC"
    9794  check_version "2.17"    "$(ld --version  | head -n1 | awk '{print $NF}')"    "BINUTILS"
    9895  check_version "1.18"    "$(tar --version | head -n1 | cut -d" " -f4)"        "TAR"
  • common/libs/func_download_pkgs

    rb515be7 r93fd2d0  
    122122
    123123      # Good or bad we write the original md5sum to a file
    124     echo "$MD5" >> MD5SUM
     124    echo "$MD5" >> MD5SUMS
    125125
    126126     # Copy the freshly downloaded file
Note: See TracChangeset for help on using the changeset viewer.