#!/bin/bash hvconfig_pre() { CONFIGURE_OPTS="\ --prefix=/usr \ --build=${CLFS_HOST} \ --host=${CLFS_TARGET} \ --exec-prefix="" \ --sysconfdir=/etc \ --libexecdir=/lib/udev \ --libdir=/usr/lib \ --disable-extras \ --disable-introspection" cd ${LFS_TMP}/${PACKAGE} install -dv ${LFS}/lib/{firmware,udev/devices/{pts,shm}} } hvbuild() { make make DESTDIR=${LFS} install }