X-Git-Url: http://gitweb.hugovil.com/?a=blobdiff_plain;f=stage3%2Fpkg%2Fpciutils;h=9bddc02090bcdf40c5a6e914b877571bc45ec862;hb=1b6490195147ee6d1098cf255240d60f60c40108;hp=a63b8ac1e0348b969a5152c3f42be99cceb377f9;hpb=3dae4c554ec18f465eb6ee5e6efdbdbe8557e13c;p=hvlinux.git diff --git a/stage3/pkg/pciutils b/stage3/pkg/pciutils index a63b8ac..9bddc02 100644 --- a/stage3/pkg/pciutils +++ b/stage3/pkg/pciutils @@ -2,13 +2,19 @@ hvbuild() { - cd ${LFS_TMP}/${PACKAGE} + # ZLIB=no: Prevents compression of the pci.ids file. + make PREFIX=/usr \ + SHAREDIR=/usr/share/misc \ + MANDIR=/usr/share/man \ + SHARED=yes \ + ZLIB=no \ + all - # ZLIB=no: Prevents compression of the pci.ids file which is needed by HAL. - make PREFIX=/usr ZLIB=no - - 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 }