summaryrefslogtreecommitdiffstats
path: root/source/n/libtirpc/libtirpc.SlackBuild
diff options
context:
space:
mode:
Diffstat (limited to 'source/n/libtirpc/libtirpc.SlackBuild')
-rwxr-xr-xsource/n/libtirpc/libtirpc.SlackBuild8
1 files changed, 2 insertions, 6 deletions
diff --git a/source/n/libtirpc/libtirpc.SlackBuild b/source/n/libtirpc/libtirpc.SlackBuild
index 5ca6294db..c7361bd35 100755
--- a/source/n/libtirpc/libtirpc.SlackBuild
+++ b/source/n/libtirpc/libtirpc.SlackBuild
@@ -1,6 +1,6 @@
#!/bin/bash
-# Copyright 2015, 2018 Patrick J. Volkerding, Sebeka, Minnesota, USA
+# Copyright 2015, 2018, 2023 Patrick J. Volkerding, Sebeka, Minnesota, USA
# All rights reserved.
#
# Redistribution and use of this script, with or without modification, is
@@ -21,10 +21,6 @@
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
# Thanks to Jan Rafaj for contributing the original reference script.
-# Remark: - The GSS support (for secure RPC) is currently not built, as it
-# Remark: requires Kerberos 5 libraries. If you need it, install
-# Remark: Kerberos 5, remove '--disable-gssapi' from the configure flags
-# Remark: below and rebuild.
cd $(dirname $0) ; CWD=$(pwd)
@@ -40,7 +36,7 @@ WITH_GSS=${WITH_GSS:-YES}
if [ -z "$ARCH" ]; then
case "$(uname -m)" in
i?86) ARCH=i586 ;;
- arm*) readelf /usr/bin/file -A | egrep -q "Tag_CPU.*[4,5]" && ARCH=arm || ARCH=armv7hl ;;
+ arm*) readelf /usr/bin/file -A | grep -E -q "Tag_CPU.*[4,5]" && ARCH=arm || ARCH=armv7hl ;;
# Unless $ARCH is already set, use uname -m for all other archs:
*) ARCH=$(uname -m) ;;
esac