summaryrefslogtreecommitdiffstats
path: root/source/a/coreutils/coreutils.SlackBuild
diff options
context:
space:
mode:
author Patrick J Volkerding <volkerdi@slackware.com>2023-03-22 20:22:25 +0000
committer Eric Hameleers <alien@slackware.com>2023-03-22 22:37:07 +0100
commit98045b7b19ef150b864f97a1a987682d61e348a8 (patch)
tree8e40e18b027f2bf9abbc5d2666f6a2df565d7bb5 /source/a/coreutils/coreutils.SlackBuild
parent6b6caf66ba2adca3cda2fb7b9a739fbf08d5aeba (diff)
downloadcurrent-98045b7b19ef150b864f97a1a987682d61e348a8.tar.gz
current-98045b7b19ef150b864f97a1a987682d61e348a8.tar.xz
Wed Mar 22 20:22:25 UTC 202320230322202225
a/coreutils-9.2-x86_64-2.txz: Rebuilt. Don't link with OpenSSL's libcrypto, as it creates problems on machines that don't yet have openssl3 installed when /bin/sort suddenly depends upon libcrypto.so.3. Worked fine without this previously, so it shouldn't really make any difference. There's also a configure option to use the kernel's crypto routines if available, but for now we'll skip this. Thanks to rahrah. a/kernel-firmware-20230320_bcdcfbc-noarch-1.txz: Upgraded. a/kernel-generic-6.1.21-x86_64-1.txz: Upgraded. a/kernel-huge-6.1.21-x86_64-1.txz: Upgraded. a/kernel-modules-6.1.21-x86_64-1.txz: Upgraded. d/kernel-headers-6.1.21-x86-1.txz: Upgraded. k/kernel-source-6.1.21-noarch-1.txz: Upgraded. l/adwaita-icon-theme-44.0-noarch-1.txz: Upgraded. n/gpgme-1.19.0-x86_64-1.txz: Upgraded. n/links-2.29-x86_64-1.txz: Upgraded. t/texlive-2023.230322-x86_64-1.txz: Upgraded. Thanks to Johannes Schoepfer. isolinux/initrd.img: Rebuilt. kernels/*: Upgraded. usb-and-pxe-installers/usbboot.img: Rebuilt.
Diffstat (limited to 'source/a/coreutils/coreutils.SlackBuild')
-rwxr-xr-xsource/a/coreutils/coreutils.SlackBuild10
1 files changed, 8 insertions, 2 deletions
diff --git a/source/a/coreutils/coreutils.SlackBuild b/source/a/coreutils/coreutils.SlackBuild
index 728c30248..5bb5f909e 100755
--- a/source/a/coreutils/coreutils.SlackBuild
+++ b/source/a/coreutils/coreutils.SlackBuild
@@ -1,6 +1,6 @@
#!/bin/bash
-# Copyright 2005-2018 Patrick J. Volkerding, Sebeka, MN, USA
+# Copyright 2005-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=coreutils
VERSION=${VERSION:-$(echo $PKGNAM-*.tar.?z | cut -d - -f 2 | rev | cut -f 3- -d . | rev)}
-BUILD=${BUILD:-1}
+BUILD=${BUILD:-2}
NUMJOBS=${NUMJOBS:-" -j$(expr $(nproc) + 1) "}
@@ -101,6 +101,11 @@ zcat $CWD/no_ls_quoting.patch.gz | patch -p1 --verbose --backup --suffix=.orig |
# too commonly used to disregard them. Better to stick with the older more
# widely accepted standards until things begin to demand the new way.
+# Don't use the openssl crypto library, otherwise /bin/sort ends up linked
+# against openssl's libcrypto which creates problems for upgradepkg.
+# It is also possible to use --with-linux-crypto to enable the Linux kernel
+# crypto routines, but we'll skip this for now.
+
FORCE_UNSAFE_CONFIGURE=1 \
CFLAGS="$SLKCFLAGS" \
DEFAULT_POSIX2_VERSION=199209 \
@@ -112,6 +117,7 @@ DEFAULT_POSIX2_VERSION=199209 \
--sysconfdir=/etc \
--libdir=/usr/lib${LIBDIRSUFFIX} \
--enable-install-program=arch \
+ --with-openssl=no \
--build=$ARCH-slackware-linux || exit 1
make $NUMJOBS || make || exit 1