#!/bin/bash hvconfig_pre() { export AR=ar export AS=as CONFIGURE_OPTS+=" \ --host=${CLFS_HOST} \ --target=${CLFS_TARGET} \ --with-sysroot=${CLFS} \ --with-lib-path=/tools/lib \ --disable-nls \ --enable-shared \ --disable-multilib" case "${HVL_TARGET}" in x86_64*) CONFIGURE_OPTS+=" --enable-64-bit-bfd" ;; esac } hvconfig_post() { unset AR unset AS ${HVMAKE} configure-host } hvbuild_post() { cp -v ../${PACKAGE}/include/libiberty.h /tools/include }