diff options
Diffstat (limited to 'source/a/pciutils/pciutils.SlackBuild')
-rwxr-xr-x | source/a/pciutils/pciutils.SlackBuild | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/source/a/pciutils/pciutils.SlackBuild b/source/a/pciutils/pciutils.SlackBuild index 2c90e8a7..15f688b8 100755 --- a/source/a/pciutils/pciutils.SlackBuild +++ b/source/a/pciutils/pciutils.SlackBuild @@ -24,7 +24,7 @@ cd $(dirname $0) ; CWD=$(pwd) PKGNAM=pciutils VERSION=${VERSION:-$(echo pciutils-*.tar.xz | rev | cut -f 3- -d . | cut -f 1 -d - | rev)} -BUILD=${BUILD:-3} +BUILD=${BUILD:-1} NUMJOBS=${NUMJOBS:-" -j$(expr $(nproc) + 1) "} @@ -103,6 +103,13 @@ mkdir $PKG/lib${LIBDIRSUFFIX} cp -a lib*.so.? ../../lib${LIBDIRSUFFIX} ) +# Add a symlink to the old location: +if [ ! -x $PKG/sbin/lspci ]; then + if [ -x $PKG/usr/bin/lspci ]; then + ( cd $PKG/sbin ; ln -sf ../usr/bin/lspci . ) + fi +fi + mkdir -p $PKG/usr/sbin mv $PKG/sbin/update-pciids $PKG/usr/sbin/update-pciids |