Completed transition to new ipkg method (ipkg.def), successfully booting after stage 1
[hvlinux.git] / stage1 / pkg / binutils
index cc0ae1b..9ea2aad 100644 (file)
@@ -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
 }