libraries/libglademm: Fixed SLKCFLAGS for i686.

Apparently someone somewhere didn't realize the difference between
0 and O (zero and oh).  Thanks to slakmagik for noticing it in the
tint2 build and inspiring me to check for it elsewhere...  :-)

Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
This commit is contained in:
Robby Workman 2010-06-12 02:28:32 -05:00
parent 98d740080f
commit 42f1ec7db8

View file

@ -46,7 +46,7 @@ if [ "$ARCH" = "i486" ]; then
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
LIBDIRSUFFIX=""
elif [ "$ARCH" = "i686" ]; then
SLKCFLAGS="-02 -march=i686 -mtune=i686"
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
LIBDIRSUFFIX=""
elif [ "$ARCH" = "x86_64" ]; then
SLKCFLAGS="-O2 -fPIC"