diff options
Diffstat (limited to 'source/a')
-rwxr-xr-x | source/a/shadow/shadow.SlackBuild | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/source/a/shadow/shadow.SlackBuild b/source/a/shadow/shadow.SlackBuild index 21d4d875..40326878 100755 --- a/source/a/shadow/shadow.SlackBuild +++ b/source/a/shadow/shadow.SlackBuild @@ -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:-7} +BUILD=${BUILD:-8} # Automatically determine the architecture we're building on: if [ -z "$ARCH" ]; then @@ -192,6 +192,12 @@ if [ "$SHIP_SU" = "NO" ]; then find $PKG/usr/man -name suauth.5 | xargs rm fi +# /etc/suauth doesn't work with PAM, even if configure.ac is hacked to try +# to turn the feature on, so remove the man pages if we're using PAM: +if [ -L /lib${LIBDIRSUFFIX}/libpam.so.? ]; then + find $PKG/usr/man -name suauth.5 | xargs rm +fi + # /bin/groups is provided by coreutils. rm -f $PKG/bin/groups find $PKG -name groups.1 -exec rm {} \+ |