diff options
author | B. Watson <urchlay@slackware.uk> | 2023-02-14 01:56:46 -0500 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2023-02-18 10:07:04 +0700 |
commit | cc6ddabd048666a5eec1f07f063a530d8a491672 (patch) | |
tree | 67afda0dcfbac2b91829d246b2f0c48757d083b5 /system | |
parent | 4fd99e2f798e4a45d44042a1ce8bef6438d2d7f3 (diff) |
system/modules: Fix PRINT_PACKAGE_NAME.
Signed-off-by: B. Watson <urchlay@slackware.uk>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'system')
-rw-r--r-- | system/modules/modules.SlackBuild | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/system/modules/modules.SlackBuild b/system/modules/modules.SlackBuild index 5028d6f6a64de..f4851810aa0f7 100644 --- a/system/modules/modules.SlackBuild +++ b/system/modules/modules.SlackBuild @@ -32,14 +32,6 @@ PKGTYPE=${PKGTYPE:-tgz} DOCS="CONTRIBUTING.rst ChangeLog INSTALL.rst COPYING.GPLv2 MIGRATING.rst NEWS.rst README.md" -# 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} @@ -52,6 +44,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="" |