X-Git-Url: http://gitweb.hugovil.com/?a=blobdiff_plain;f=stage0%2Fpkg%2Fbinutils;fp=stage0%2Fpkg%2Fbinutils;h=5c8036437946e410b66a02fc7fbff422ac158a8e;hb=1422b969f72925bc679180c80ac0fa2518b16a03;hp=443714d52ec1b4ed7388a24b51b83d128e85e4ab;hpb=8b5bc6d928b8e6bf85f28816cf33eb47b8af5867;p=hvlinux.git diff --git a/stage0/pkg/binutils b/stage0/pkg/binutils index 443714d..5c80364 100644 --- a/stage0/pkg/binutils +++ b/stage0/pkg/binutils @@ -5,8 +5,7 @@ hvconfig_pre() export AR=ar export AS=as - CONFIGURE_OPTS="\ - ${CONFIGURE_OPTS} \ + CONFIGURE_OPTS+=" \ --host=${CLFS_HOST} \ --target=${CLFS_TARGET} \ --with-sysroot=${CLFS} \ @@ -16,10 +15,9 @@ hvconfig_pre() --disable-multilib" case "${HVL_TARGET}" in - "x86_64") - # This adds 64 bit support to Binutils. - CONFIGURE_OPTS="${CONFIGURE_OPTS} --enable-64-bit-bfd" - ;; + x86_64*) + CONFIGURE_OPTS+=" --enable-64-bit-bfd" + ;; esac }