-Removed all ipkg_* functions and replaced them with a single ipkg function accepting...
[hvlinux.git] / stage1 / pkg / gettext
index 6bd0d9a..7bcd57a 100644 (file)
@@ -1,5 +1,11 @@
 #!/bin/bash
 
+CONFIGURE_OPTS="\
+    --prefix=/tools \
+    --build=${CLFS_HOST} \
+    --host=${CLFS_TARGET} \
+    ${CONFIGURE_OPTS}"
+
 # When cross-compiling the Gettext configure script assumes we don't have a
 # working wcwidth when we do. The following will fix possible compilation
 # errors because of this assumption:
@@ -14,17 +20,11 @@ hvconfig()
 {
     cd ${LFS_TMP}/${PACKAGE}/gettext-tools
 
-    FINAL_CFG_OPTS="\
-      --prefix=/tools \
-      --build=${CLFS_HOST} \
-      --host=${CLFS_TARGET} \
-      ${CONFIGURE_OPTS}"
-
     echo "Running configure with options:"
-    echo "  <${FINAL_CFG_OPTS}>"
+    echo "  <${CONFIGURE_OPTS}>"
 
     CC="${CC} ${CLFS_BUILDFLAGS}" CXX="${CXX} ${CLFS_BUILDFLAGS}" \
-        ./configure ${FINAL_CFG_OPTS}
+        ./configure ${CONFIGURE_OPTS}
 }
 
 hvbuild()