diff options
author | Patrick J Volkerding <volkerdi@slackware.com> | 2024-03-11 18:29:55 +0000 |
---|---|---|
committer | Eric Hameleers <alien@slackware.com> | 2024-03-11 19:59:19 +0100 |
commit | 30130016eed435a8530c1583fefe1ab8d19d1d50 (patch) | |
tree | 6e60b4caa2f1625bdcb616b43b22160147ac0444 /source/a | |
parent | 8bdf5baa11c2b730e06ea54926b4ffbbfb8a1b3a (diff) | |
download | current-30130016eed435a8530c1583fefe1ab8d19d1d50.tar.gz current-30130016eed435a8530c1583fefe1ab8d19d1d50.tar.xz |
Mon Mar 11 18:29:55 UTC 202420240311182955
a/dialog-1.3_20240307-x86_64-1.txz: Upgraded.
l/libpaper-2.2.3-x86_64-1.txz: Upgraded.
l/libqalculate-5.0.0-x86_64-1.txz: Upgraded.
l/pyparsing-3.1.2-x86_64-1.txz: Upgraded.
l/python-packaging-24.0-x86_64-1.txz: Upgraded.
n/openssh-9.7p1-x86_64-1.txz: Upgraded.
Future deprecation notice
OpenSSH plans to remove support for the DSA signature algorithm in
early 2025 and compile-time disable it later this year.
n/wget-1.24.5-x86_64-1.txz: Upgraded.
x/iceauth-1.0.10-x86_64-1.txz: Upgraded.
x/libXaw-1.0.16-x86_64-1.txz: Upgraded.
xap/xaos-4.3.2-x86_64-1.txz: Upgraded.
Diffstat (limited to 'source/a')
-rwxr-xr-x | source/a/dialog/dialog.SlackBuild | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/source/a/dialog/dialog.SlackBuild b/source/a/dialog/dialog.SlackBuild index eafa1faba..26fad21d2 100755 --- a/source/a/dialog/dialog.SlackBuild +++ b/source/a/dialog/dialog.SlackBuild @@ -1,5 +1,5 @@ #!/bin/bash -# Copyright 2006, 2007, 2008, 2009, 2010, 2011, 2013, 2018, 2019, 2020 Patrick J. Volkerding, Sebeka, MN, USA +# Copyright 2006, 2007, 2008, 2009, 2010, 2011, 2013, 2018, 2019, 2020, 2024 Patrick J. Volkerding, Sebeka, MN, USA # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -87,6 +87,8 @@ else LIBDIRSUFFIX="" fi +NUMJOBS=${NUMJOBS:-" -j $(expr $(nproc) + 1) "} + cd $TMP rm -rf ${PKGNAM}-${VERSION} tar xvf $CWD/${PKGNAM}-$VERSION.tar.?z || exit 1 @@ -119,7 +121,7 @@ CFLAGS="$SLKCFLAGS" \ --build=$ARCH-slackware-linux # Build and install: -make -j4 || exit 1 +make $NUMJOBS || exit 1 make install DESTDIR=$PKG || exit 1 # Keep the old traditional looknfeel :-) |