#!/bin/bash hvconfig_pre() { # The arpd binary included in this package is dependent on Berkeley DB. # Because arpd is not a very common requirement on a base Linux system, # remove the dependency on Berkeley DB by applying the sed command below sed -i '/^TARGETS/s@arpd@@g' ${LFS_TMP}/${PACKAGE}/misc/Makefile } hvbuild() { cd ${LFS_TMP}/${PACKAGE} make DESTDIR= make DESTDIR= SBINDIR=/sbin DOCDIR=/usr/share/doc/iproute2 MANDIR=/usr/share/man install } hvbuild_post() { unset DESTDIR unset SBINDIR unset DOCDIR unset MANDIR cd bozo }