diff options
author | Patrick J Volkerding <volkerdi@slackware.com> | 2023-03-28 19:36:46 +0000 |
---|---|---|
committer | Eric Hameleers <alien@slackware.com> | 2023-03-28 22:33:03 +0200 |
commit | 70654f4ef8cf0927c95b3bdd09e0f54983d56f79 (patch) | |
tree | de897dbdc47f7351d994f10bf0f2270430d2376d /source/a/shadow | |
parent | a37d8ee0a68a20e0fa77bcb846bf8cc5ffd66f3a (diff) | |
download | current-70654f4ef8cf0927c95b3bdd09e0f54983d56f79.tar.gz current-70654f4ef8cf0927c95b3bdd09e0f54983d56f79.tar.xz |
Tue Mar 28 19:36:46 UTC 202320230328193646
a/grub-2.06-x86_64-5.txz: Rebuilt.
[PATCH] fs/ext2: Ignore checksum seed incompat feature.
Fixes using ext4 with the default options in e2fsprogs-1.47.0.
Thanks to USUARIONUEVO.
a/shadow-4.13-x86_64-1.txz: Upgraded.
ap/squashfs-tools-4.6.1-x86_64-1.txz: Upgraded.
l/gsettings-desktop-schemas-44.0-x86_64-1.txz: Upgraded.
l/gvfs-1.50.4-x86_64-1.txz: Upgraded.
l/libcap-2.68-x86_64-1.txz: Upgraded.
x/libva-utils-2.18.1-x86_64-1.txz: Upgraded.
xfce/xfce4-screensaver-4.18.1-x86_64-1.txz: Upgraded.
testing/packages/rust-1.68.2-x86_64-1.txz: Upgraded.
Diffstat (limited to 'source/a/shadow')
-rwxr-xr-x | source/a/shadow/shadow.SlackBuild | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/source/a/shadow/shadow.SlackBuild b/source/a/shadow/shadow.SlackBuild index 19163cef2..e35e57a7a 100755 --- a/source/a/shadow/shadow.SlackBuild +++ b/source/a/shadow/shadow.SlackBuild @@ -1,6 +1,6 @@ #!/bin/bash -# Copyright 2005-2020 Patrick J. Volkerding, Sebeka, Minnesota, USA +# Copyright 2005-2023 Patrick J. Volkerding, Sebeka, Minnesota, 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=shadow VERSION=${VERSION:-$(echo $PKGNAM-*.tar.xz | rev | cut -f 3- -d . | cut -f 1 -d - | rev)} -BUILD=${BUILD:-12} +BUILD=${BUILD:-1} # Automatically determine the architecture we're building on: if [ -z "$ARCH" ]; then @@ -118,6 +118,7 @@ fi CFLAGS="$SLKCFLAGS" \ ./configure \ --prefix=/usr \ + --libdir=/usr/lib${LIBDIRSUFFIX} \ --sbindir=/usr/sbin \ --bindir=/usr/bin \ --sysconfdir=/etc \ @@ -136,7 +137,11 @@ CFLAGS="$SLKCFLAGS" \ make $NUMJOBS || make || exit 1 make install DESTDIR=$PKG || exit 1 +# Don't ship .la files: +rm -f $PKG/{,usr/}lib${LIBDIRSUFFIX}/*.la + # Fix user group = 100: +mkdir -p $PKG/etc/default zcat $CWD/useradd.gz > $PKG/etc/default/useradd mv $PKG/etc/default/useradd $PKG/etc/default/useradd.new |