X-Git-Url: http://gitweb.hugovil.com/?a=blobdiff_plain;f=stage1%2Fpkg%2Fbinutils;h=9ea2aad547fb6dc4cf514ebd99671e6177813a0a;hb=662bb64b8fc4f0d464ca0f245fcfa843d9a318df;hp=cc0ae1ba37ccb3cc0bdb8f7ca8660c41779b6451;hpb=0028eaa73ae0c3bd1dbf90c4bd508ae705bc386f;p=hvlinux.git diff --git a/stage1/pkg/binutils b/stage1/pkg/binutils index cc0ae1b..9ea2aad 100644 --- a/stage1/pkg/binutils +++ b/stage1/pkg/binutils @@ -1,15 +1,15 @@ #!/bin/bash -CONFIGURE_OPTS="\ - ${CONFIGURE_OPTS} \ - --target=${CLFS_TARGET} \ - --with-lib-path=/tools/lib \ - --disable-nls \ - --enable-shared \ - --disable-multilib" - hvconfig_pre() { + CONFIGURE_OPTS="\ + ${CONFIGURE_OPTS} \ + --target=${CLFS_TARGET} \ + --with-lib-path=/tools/lib \ + --disable-nls \ + --enable-shared \ + --disable-multilib" + case "${HVL_TARGET}" in "x86_64") # This adds 64 bit support to Binutils. @@ -18,9 +18,7 @@ hvconfig_pre() esac } -hvbuild() +hvconfig_post() { ${HVMAKE} configure-host - ${HVMAKE} - ${HVMAKE} install }