diff options
author | Patrick J Volkerding <volkerdi@slackware.com> | 2020-06-19 19:59:04 +0000 |
---|---|---|
committer | Eric Hameleers <alien@slackware.com> | 2020-06-19 22:41:30 +0200 |
commit | b25c84154fbea96dc71b06605c8447a47342bedb (patch) | |
tree | 0629044b7c7fc5cb0bf820bef8ffd2f973e8b339 /source/l/desktop-file-utils | |
parent | 0ded95a6619bb151727096c01a30879455d04374 (diff) | |
download | current-b25c84154fbea96dc71b06605c8447a47342bedb.tar.gz current-b25c84154fbea96dc71b06605c8447a47342bedb.tar.xz |
Fri Jun 19 19:59:04 UTC 202020200619195904
a/haveged-1.9.12-x86_64-1.txz: Upgraded.
a/kernel-firmware-20200619_3890db3-noarch-1.txz: Upgraded.
a/sysvinit-scripts-2.1-noarch-34.txz: Rebuilt.
rc.M: check for elogind first so that we can ignore a stale CK2 package.
ap/sudo-1.9.1-x86_64-1.txz: Upgraded.
l/alsa-lib-1.2.3.1-x86_64-1.txz: Upgraded.
l/desktop-file-utils-0.26-x86_64-1.txz: Upgraded.
n/mutt-1.14.4-x86_64-1.txz: Upgraded.
x/libinput-1.15.6-x86_64-1.txz: Upgraded.
x/xinit-1.4.1-x86_64-2.txz: Rebuilt.
When using elogind, start the session on the current console.
Thanks to alienBOB.
Diffstat (limited to 'source/l/desktop-file-utils')
-rwxr-xr-x | source/l/desktop-file-utils/desktop-file-utils.SlackBuild | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/source/l/desktop-file-utils/desktop-file-utils.SlackBuild b/source/l/desktop-file-utils/desktop-file-utils.SlackBuild index 9bc520c16..c82c5eaa3 100755 --- a/source/l/desktop-file-utils/desktop-file-utils.SlackBuild +++ b/source/l/desktop-file-utils/desktop-file-utils.SlackBuild @@ -1,6 +1,6 @@ #!/bin/bash -# Copyright 2006, 2008, 2009, 2010, 2018 Patrick J. Volkerding, Sebeka, MN, USA +# Copyright 2006, 2008, 2009, 2010, 2018, 2020 Patrick J. Volkerding, Sebeka, MN, USA # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -76,6 +76,10 @@ find . \ \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ -exec chmod 644 {} \+ +if [ ! -r configure ]; then + NOCONFIGURE=1 ./autogen.sh +fi + # Configure: CFLAGS="$SLKCFLAGS" \ ./configure \ |