#!/bin/sh set -o errexit # First argument of this script is the package name. # Remaining arguments are additional configure options. # Reading system configuration informations, functions and package versions. source ../sysinfos source ../functions source ../packages-list PACKAGE=${1} shift CONFIGURE_OPTS=${*} # Applying patches (if any) apply_patches ${PACKAGE} cd ${LFS_TMP}/${PACKAGE} ./configure \ --prefix=/usr \ ${CONFIGURE_OPTS} make make install ldconfig # The previous command installed two .so files into /usr/lib. # We will move it into /lib and then relink it to /usr/lib: mv -v /usr/lib/libz.so.* /lib ln -svf ../../lib/libz.so.1 /usr/lib/libz.so # Fix the permissions on the static library: chmod 644 /usr/lib/libz.a exit $?