summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
author B. Watson2023-02-14 07:51:25 +0100
committer Willy Sudiarto Raharjo2023-02-18 04:07:03 +0100
commite7dc9da69a6c46192e45d56069b86a7bf6ec642b (patch)
tree1a706b0ebcadb192400cb7f7e6dcc0ba1e0a9baf
parente0cdeae6e7460e70280a2a22207b0d5370835215 (diff)
downloadslackbuilds-e7dc9da69a6c46192e45d56069b86a7bf6ec642b.tar.gz
development/komodo-ide: Fix PRINT_PACKAGE_NAME.
Signed-off-by: B. Watson <urchlay@slackware.uk> Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
-rw-r--r--development/komodo-ide/komodo-ide.SlackBuild13
1 files changed, 5 insertions, 8 deletions
diff --git a/development/komodo-ide/komodo-ide.SlackBuild b/development/komodo-ide/komodo-ide.SlackBuild
index 5b51405c0d..0d5f697928 100644
--- a/development/komodo-ide/komodo-ide.SlackBuild
+++ b/development/komodo-ide/komodo-ide.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