mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-20 19:41:34 +01:00
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:
parent
98d740080f
commit
42f1ec7db8
1 changed files with 1 additions and 1 deletions
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue