Browse Source

libraries/xmpppy: Fix SLKCFLAGS -02 typo.

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

Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
pull/186/head
fourtysixandtwo 4 years ago
committed by Willy Sudiarto Raharjo
parent
commit
50a75083d2
No known key found for this signature in database GPG Key ID: 3F617144D7238786
  1. 6
      libraries/xmpppy/xmpppy.SlackBuild

6
libraries/xmpppy/xmpppy.SlackBuild

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

Loading…
Cancel
Save