summaryrefslogtreecommitdiffstats
path: root/development/komodo-edit/komodo-edit.SlackBuild
diff options
context:
space:
mode:
author B. Watson2023-02-14 07:50:59 +0100
committer Willy Sudiarto Raharjo2023-02-18 04:07:03 +0100
commite0cdeae6e7460e70280a2a22207b0d5370835215 (patch)
tree0fb5344642b1aa7760f632d88b63b2dc561ea0f6 /development/komodo-edit/komodo-edit.SlackBuild
parent37d004a3f2e84ce5b4c3b8aa6d2d98e86086544a (diff)
downloadslackbuilds-e0cdeae6e7460e70280a2a22207b0d5370835215.tar.gz
development/komodo-edit: Fix PRINT_PACKAGE_NAME.
Signed-off-by: B. Watson <urchlay@slackware.uk> Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'development/komodo-edit/komodo-edit.SlackBuild')
-rw-r--r--development/komodo-edit/komodo-edit.SlackBuild13
1 files changed, 5 insertions, 8 deletions
diff --git a/development/komodo-edit/komodo-edit.SlackBuild b/development/komodo-edit/komodo-edit.SlackBuild
index 318b489d6b..2cea1bc3ef 100644
--- a/development/komodo-edit/komodo-edit.SlackBuild
+++ b/development/komodo-edit/komodo-edit.SlackBuild
@@ -30,14 +30,6 @@ BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
PKGTYPE=${PKGTYPE:-tgz}
-# If the variable PRINT_PACKAGE_NAME is set, then this script will report what
-# the name of the created package would be, and then exit. This information
-# could be useful to other scripts.
-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}
@@ -50,6 +42,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" = "x86_64" ]; then
PKG_ARCH=x86_64
else