#!/bin/sh set -o errexit # First argument of this script is the package name # Reading system configuration informations, functions and package versions. source ../sysinfos source ../functions source ../packages-list # Applying patches (if any) apply_patches ${1} # By default, Psmisc's pidof program is not installed. This usually is # not a problem because it is installed later in the Sysvinit package, # which provides a better pidof program. cd ${LFS_TMP}/${1}-build ../${1}/configure \ --prefix=/usr make -j ${MAKEJOBS} make install # By default, Psmisc's pidof program is not installed. This usually is not a # problem because it is installed later in the Sysvinit package, which provides # a better pidof program. If Sysvinit will not be used for a particular system, # complete the installation of Psmisc by creating the following symlink: #ln -sv killall /bin/pidof exit $?