diff options
author | B. Watson <urchlay@slackware.uk> | 2023-02-13 20:06:04 -0500 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2023-02-18 10:06:55 +0700 |
commit | 047bf86200dfa939929bf0a974a5da0a69287eb7 (patch) | |
tree | 54811473b184b88c41b2d9b480df1ebb59a5c001 /audio/xmp | |
parent | 637752f8207c9a93da7315574ccb75b520fc8fc7 (diff) |
audio/xmp: 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/xmp')
-rw-r--r-- | audio/xmp/xmp.SlackBuild | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/audio/xmp/xmp.SlackBuild b/audio/xmp/xmp.SlackBuild index 068776dfc83e..dc6dd8dafa61 100644 --- a/audio/xmp/xmp.SlackBuild +++ b/audio/xmp/xmp.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="" |