-Removed all ipkg_* functions and replaced them with a single ipkg function accepting...
[hvlinux.git] / stage1 / pkg / e2fsprogs
index 0d9f401..49f5977 100644 (file)
@@ -1,20 +1,17 @@
 #!/bin/bash
 
-hvconfig()
-{
-    cd ${LFS_TMP}/${PACKAGE}-build
+CC="${CC} ${CLFS_BUILDFLAGS}"
+PKG_CONFIG=true
 
-    CC="${CC} ${CLFS_BUILDFLAGS}" PKG_CONFIG=true \
-        ../${PACKAGE}/configure \
-        --prefix=/tools \
-        --enable-elf-shlibs \
-        --with-linker=${LD} \
-        --host=${CLFS_TARGET} \
-        --disable-libblkid \
-        --disable-libuuid \
-        --disable-fsck \
-        --disable-uuidd
-}
+CONFIGURE_OPTS="\
+    --prefix=/tools \
+    --enable-elf-shlibs \
+    --with-linker=${LD} \
+    --host=${CLFS_TARGET} \
+    --disable-libblkid \
+    --disable-libuuid \
+    --disable-fsck \
+    --disable-uuidd"
 
 hvbuild()
 {