Upgrade to pciutils-3.2.0 for powertop package
[hvlinux.git] / stage3 / pkg / pciutils
index 1fb4ae0..943f0de 100644 (file)
@@ -5,12 +5,20 @@ hvbuild()
     cd ${LFS_TMP}/${PACKAGE}
 
     # ZLIB=no: Prevents compression of the pci.ids file.
-    make PREFIX=/usr ZLIB=no
+    make PREFIX=/usr             \
+        SHAREDIR=/usr/share/misc \
+        MANDIR=/usr/share/man    \
+        SHARED=yes               \
+        ZLIB=no                  \
+        all
 
-    make PREFIX=/usr install
-
-    # Some packages require the PCI static library:
-    make PREFIX=/usr install-lib
+    # install-lib: for packages that require the PCI static library
+    make PREFIX=/usr             \
+        SHAREDIR=/usr/share/misc \
+        MANDIR=/usr/share/man    \
+        SHARED=yes               \
+        ZLIB=no                  \
+        install install-lib
 }
 
 hvbuild_post()