diff options
Diffstat (limited to 'source/kde/KDE.options')
-rw-r--r-- | source/kde/KDE.options | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/source/kde/KDE.options b/source/kde/KDE.options index 30ec64c2..c54dbfcf 100644 --- a/source/kde/KDE.options +++ b/source/kde/KDE.options @@ -3,14 +3,14 @@ # usually has a different version number), or by setting your own # environment variables. -[ -z $VERSION ] && export VERSION=4.10.5 +[ -z $VERSION ] && export VERSION=4.14.3 [ -z $BUILD ] && export BUILD=1 # Automatically determine the architecture we're building on: MARCH=$( uname -m ) if [ -z "$ARCH" ]; then case "$MARCH" in - i?86) export ARCH=i486 ;; + i?86) export ARCH=i586 ;; armv7hl) export ARCH=$MARCH ;; arm*) export ARCH=arm ;; # Unless $ARCH is already set, use uname -m for all other archs: @@ -22,8 +22,8 @@ fi # Use this as CFLAGS and CXXFLAGS: if [ -z "$SLKCFLAGS" ]; then - if [ "$ARCH" = "i486" ]; then - export SLKCFLAGS="-O2 -march=i486 -mtune=i686" + if [ "$ARCH" = "i586" ]; then + export SLKCFLAGS="-O2 -march=i586 -mtune=i686" export LIBDIRSUFFIX="" elif [ "$ARCH" = "s390" ]; then export SLKCFLAGS="-O2" |