summaryrefslogtreecommitdiffstats
path: root/source/n
diff options
context:
space:
mode:
author Patrick J Volkerding <volkerdi@slackware.com>2023-11-14 21:22:47 +0000
committer Eric Hameleers <alien@slackware.com>2023-11-14 23:03:42 +0100
commit2ca3471fc332cb5e520c4950ffb7ce42db3cb323 (patch)
tree25798668ae77eb90e6ab8a9c7a6cac342e0db4ce /source/n
parent6fde7400bc32c8acc21c85112794b8336137be9c (diff)
downloadcurrent-2ca3471fc332cb5e520c4950ffb7ce42db3cb323.tar.gz
current-2ca3471fc332cb5e520c4950ffb7ce42db3cb323.tar.xz
Tue Nov 14 21:22:47 UTC 202320231114212247
a/pam-1.5.3-x86_64-2.txz: Rebuilt. Relocated pkgconfig files. a/userspace-rcu-0.14.0-x86_64-2.txz: Rebuilt. Relocated pkgconfig files. ap/mariadb-10.11.6-x86_64-1.txz: Upgraded. This update fixes bugs and a security issue: Vulnerability allows high privileged attacker with network access via multiple protocols to compromise the server. Successful attacks of this vulnerability can result in unauthorized ability to cause a hang or frequently repeatable crash. For more information, see: https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-22084 (* Security fix *) d/llvm-17.0.5-x86_64-1.txz: Upgraded. kde/plasma-wayland-protocols-1.11.1-x86_64-1.txz: Upgraded. n/nfs-utils-2.6.3-x86_64-3.txz: Rebuilt. Only move the udev rule to /lib, don't grab libraries or pkgconfig files from under /usr.
Diffstat (limited to 'source/n')
-rwxr-xr-xsource/n/nfs-utils/nfs-utils.SlackBuild8
1 files changed, 5 insertions, 3 deletions
diff --git a/source/n/nfs-utils/nfs-utils.SlackBuild b/source/n/nfs-utils/nfs-utils.SlackBuild
index e7d6f333a..c69e95779 100755
--- a/source/n/nfs-utils/nfs-utils.SlackBuild
+++ b/source/n/nfs-utils/nfs-utils.SlackBuild
@@ -1,6 +1,6 @@
#!/bin/bash
-# Copyright 2008, 2009, 2010, 2011, 2013, 2016, 2018, 2020 Patrick J. Volkerding, Sebeka, MN, USA
+# Copyright 2008, 2009, 2010, 2011, 2013, 2016, 2018, 2020, 2023 Patrick J. Volkerding, Sebeka, MN, USA
# All rights reserved.
#
# Redistribution and use of this script, with or without modification, is
@@ -24,7 +24,7 @@ cd $(dirname $0) ; CWD=$(pwd)
PKGNAM=nfs-utils
VERSION=${VERSION:-$(echo $PKGNAM-*.tar.?z | rev | cut -f 3- -d . | cut -f 1 -d - | rev)}
-BUILD=${BUILD:-2}
+BUILD=${BUILD:-3}
# Automatically determine the architecture we're building on:
if [ -z "$ARCH" ]; then
@@ -126,7 +126,9 @@ make install DESTDIR=$PKG || exit 1
rm -f $PKG/{,usr/}lib${LIBDIRSUFFIX}/*.la
# Move udev rule:
-mv $PKG/usr/lib $PKG
+mkdir -p $PKG/lib
+mv $PKG/usr/lib/udev $PKG/lib
+rmdir $PKG/usr/lib 2> /dev/null
# Add nfsmount.conf and man page:
cat ./utils/mount/nfsmount.conf > $PKG/etc/nfsmount.conf.new