desktop/bumblebee-status: Fix SLKCFLAGS -02 typo.

Signed-off-by: B. Watson <yalhcru@gmail.com>

Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
fourtysixandtwo 2022-03-22 13:35:52 -06:00 committed by Willy Sudiarto Raharjo
parent 50a75083d2
commit ed20c2c7ae
No known key found for this signature in database
GPG Key ID: 3F617144D7238786
1 changed files with 3 additions and 3 deletions

View File

@ -39,13 +39,13 @@ if [ -z "$ARCH" ]; then
fi
if [ "$ARCH" = "i586" ]; then
SLKCFLAGS="-02 -march=i586 -mtune=i686"
SLKCFLAGS="-O2 -march=i586 -mtune=i686"
LIBDIRSUFFIX=""
elif [ "$ARCH" = "x86_64" ]; then
SLKCFLAGS="-02 -fPIC"
SLKCFLAGS="-O2 -fPIC"
LIBDIRSUFFIX="64"
else
SLKCFLAGS="-02"
SLKCFLAGS="-O2"
LIBDIRSUFFIX=""
fi