diff options
author | B. Watson <urchlay@slackware.uk> | 2023-01-06 14:46:26 -0500 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2023-01-14 08:50:15 +0700 |
commit | f159e007a106267b3119a8ff3583bc106b396767 (patch) | |
tree | fda423534b2617df10d1f5fd68caef3fff0c60aa /audio/tap_plugins | |
parent | f8330e63a0afdbc21e3e8698e45d8ebfa35efe57 (diff) |
audio/tap_plugins: Fix PRINT_PACKAGE_NAME.
Signed-off-by: B. Watson <urchlay@slackware.uk>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'audio/tap_plugins')
-rw-r--r-- | audio/tap_plugins/tap_plugins.SlackBuild | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/audio/tap_plugins/tap_plugins.SlackBuild b/audio/tap_plugins/tap_plugins.SlackBuild index f8ffcbd855449..235af296db976 100644 --- a/audio/tap_plugins/tap_plugins.SlackBuild +++ b/audio/tap_plugins/tap_plugins.SlackBuild @@ -6,6 +6,8 @@ # Licensed under the WTFPL. See http://www.wtfpl.net/txt/copying/ for details. +# 20230106 bkw: rearrage stuff so PRINT_PACKAGE_NAME works. + # 20211201 bkw: update for v1.0.1. # - fix -current build. # - new-style icons. @@ -27,11 +29,6 @@ BUILD=${BUILD:-1} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} -if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then - echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE" - exit 0 -fi - TMP=${TMP:-/tmp/SBo} PKG=$TMP/package-$PRGNAM OUTPUT=${OUTPUT:-/tmp} @@ -44,6 +41,11 @@ if [ -z "$ARCH" ]; then esac fi +if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then + echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE" + exit 0 +fi + if [ "$ARCH" = "i586" ]; then SLKCFLAGS="-O2 -march=i586 -mtune=i686" LIBDIRSUFFIX="" |