summaryrefslogtreecommitdiffstats
path: root/development/gcc5
diff options
context:
space:
mode:
author B. Watson <yalhcru@gmail.com>2022-03-12 12:36:49 -0500
committer B. Watson <yalhcru@gmail.com>2022-03-12 12:36:49 -0500
commitf62b40474f8862aa527bce93750ad49e7befd3ad (patch)
tree045261b4a4e0527be9fb10ee308d24ffc0d49d83 /development/gcc5
parent3e57b70657a0e8831953842a7596702254155e57 (diff)
downloadslackbuilds-f62b40474f8862aa527bce93750ad49e7befd3ad.tar.gz
slackbuilds-f62b40474f8862aa527bce93750ad49e7befd3ad.tar.xz
development/gcc5: Fix sbolint nitpicks.
Signed-off-by: B. Watson <yalhcru@gmail.com>
Diffstat (limited to 'development/gcc5')
-rw-r--r--development/gcc5/gcc5.SlackBuild17
1 files changed, 8 insertions, 9 deletions
diff --git a/development/gcc5/gcc5.SlackBuild b/development/gcc5/gcc5.SlackBuild
index 6aa368d36c..0e49e8aee3 100644
--- a/development/gcc5/gcc5.SlackBuild
+++ b/development/gcc5/gcc5.SlackBuild
@@ -62,12 +62,10 @@ BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
PKGTYPE=${PKGTYPE:-tgz}
-# Automatically determine the architecture we're building on:
if [ -z "$ARCH" ]; then
case "$(uname -m)" in
i?86) ARCH=i586 ;;
arm*) readelf /usr/bin/file -A | egrep -q "Tag_CPU.*[4,5]" && ARCH=arm || ARCH=armv7hl ;;
- # Unless $ARCH is already set, use uname -m for all other archs:
*) ARCH=$(uname -m) ;;
esac
export ARCH
@@ -583,10 +581,11 @@ cat $CWD/libgcj-5.pc \
# Remove localizations overlapping with Slackware's gcc
rm -rf $PKG/usr/share/locale
-( cd $PKG
- if [ ${MULTILIB} = "YES" ]; then
- /sbin/makepkg -l y -c n $OUTPUT/${PRGNAM}-${VERSION}_multilib-$ARCH-$BUILD$TAG.$PKGTYPE
- else
- /sbin/makepkg -l y -c n $OUTPUT/${PRGNAM}-${VERSION}-$ARCH-$BUILD$TAG.$PKGTYPE
- fi
-)
+if [ ${MULTILIB} = "YES" ]; then
+ PKGVER="${VERSION}_multilib"
+else
+ PKGVER="${VERSION}"
+fi
+
+cd $PKG
+/sbin/makepkg -l y -c n "$OUTPUT/${PRGNAM}-${PKGVER}-$ARCH-$BUILD$TAG.$PKGTYPE"