diff options
author | Patrick J Volkerding <volkerdi@slackware.com> | 2024-05-07 20:06:35 +0000 |
---|---|---|
committer | Eric Hameleers <alien@slackware.com> | 2024-05-07 22:28:37 +0200 |
commit | 6dc3b3fe0a1b391d8324e9b624fb64372f3a4920 (patch) | |
tree | 28e662d94ea6febc7b3e7088b34785e2a7703610 /source/x | |
parent | 8f546e7b72f1f9766004524996b4ad15c84b42c1 (diff) | |
download | current-6dc3b3fe0a1b391d8324e9b624fb64372f3a4920.tar.gz current-6dc3b3fe0a1b391d8324e9b624fb64372f3a4920.tar.xz |
Tue May 7 20:06:35 UTC 202420240507200635
d/mercurial-6.7.3-x86_64-1.txz: Upgraded.
l/imagemagick-7.1.1_32-x86_64-2.txz: Rebuilt.
Add INSTALL_BASE= to --with-perl-options= to fix perl modules installation
not honoring $LIBDIRSUFFIX since 7.1.1-30. Thanks to HQuest.
l/libqalculate-5.1.1-x86_64-1.txz: Upgraded.
l/nodejs-20.13.0-x86_64-1.txz: Upgraded.
l/python-typing_extensions-4.11.0-x86_64-1.txz: Removed.
No longer needed with the upgrade to python-setuptools_scm-8.1.0.
Thanks to audriusk for the reminder.
x/anthy-unicode-1.0.0.20240502-x86_64-1.txz: Upgraded.
Diffstat (limited to 'source/x')
-rwxr-xr-x | source/x/anthy-unicode/anthy-unicode.SlackBuild | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/source/x/anthy-unicode/anthy-unicode.SlackBuild b/source/x/anthy-unicode/anthy-unicode.SlackBuild index af7fa15fe..fd73ca256 100755 --- a/source/x/anthy-unicode/anthy-unicode.SlackBuild +++ b/source/x/anthy-unicode/anthy-unicode.SlackBuild @@ -1,6 +1,6 @@ #!/bin/bash -# Copyright 2008, 2009, 2010, 2018 Patrick J. Volkerding, Sebeka, MN USA +# Copyright 2008, 2009, 2010, 2018, 2024 Patrick J. Volkerding, Sebeka, MN USA # Copyright 2008, 2009 Eric Hameleers, Eindhoven, NL # All rights reserved. # @@ -79,6 +79,13 @@ 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 + if [ -x ./autogen.sh ]; then + NOCONFIGURE=1 ./autogen.sh + else + autoreconf -vif + fi +fi CXXFLAGS="$SLKCFLAGS" \ CFLAGS="$SLKCFLAGS" \ ./configure \ |