diff options
author | B. Watson <urchlay@slackware.uk> | 2023-02-14 01:51:54 -0500 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2023-02-18 10:07:03 +0700 |
commit | 5ddc6a151b6b85eec318a7f0be54ea8131563073 (patch) | |
tree | d42bfe8c85563e8bdb5e2f5111be17d9dde9f6ea /graphics | |
parent | e7dc9da69a6c46192e45d56069b86a7bf6ec642b (diff) |
graphics/ksnip: Fix PRINT_PACKAGE_NAME.
Signed-off-by: B. Watson <urchlay@slackware.uk>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/ksnip/ksnip.SlackBuild | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/graphics/ksnip/ksnip.SlackBuild b/graphics/ksnip/ksnip.SlackBuild index 22815afb4c7fb..a75b2e10b1b94 100644 --- a/graphics/ksnip/ksnip.SlackBuild +++ b/graphics/ksnip/ksnip.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" = "i586" ]; then SLKCFLAGS="-O2 -march=i586 -mtune=i686" LIBDIRSUFFIX="" |