Passage à linux 3.4.7, stage2 testé OK.
[hvlinux.git] / stage1 / pkg / binutils
index 9f34be4..9ea2aad 100644 (file)
@@ -1,7 +1,15 @@
 #!/bin/bash
 
-configure_pre()
+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.
@@ -10,9 +18,7 @@ configure_pre()
     esac
 }
 
-hvbuild()
+hvconfig_post()
 {
     ${HVMAKE} configure-host
-    ${HVMAKE}
-    ${HVMAKE} install
 }