Completed transition to new ipkg method (ipkg.def), successfully booting after stage 1
[hvlinux.git] / stage2 / pkg / binutils
index dabcf14..c9522c1 100644 (file)
@@ -1,16 +1,16 @@
 #!/bin/bash
 
-CC="gcc -isystem /usr/include"
-LDFLAGS="-Wl,-rpath-link,/lib"
-
-CONFIGURE_OPTS="\
-    --libdir=/usr/lib \
-    --enable-shared \
-    --disable-multilib \
-    ${CONFIGURE_OPTS}"
-
 hvconfig_pre()
 {
+    export CC="gcc -isystem /usr/include"
+    export LDFLAGS="-Wl,-rpath-link,/lib"
+
+    CONFIGURE_OPTS="\
+        ${CONFIGURE_OPTS} \
+        --libdir=/usr/lib \
+        --enable-shared \
+        --disable-multilib"
+    
     case "${HVL_TARGET}" in
         "x86_64")
             # Libiberty uses gcc -print-multi-os-directory to determine where to
@@ -26,6 +26,12 @@ hvconfig_pre()
     esac
 }
 
+hvconfig_post()
+{
+    unset CC
+    unset LDFLAGS
+}
+
 hvbuild()
 {
     make configure-host