diff options
Diffstat (limited to 'system/kexec-tools/kexec-tools.SlackBuild')
-rw-r--r-- | system/kexec-tools/kexec-tools.SlackBuild | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/system/kexec-tools/kexec-tools.SlackBuild b/system/kexec-tools/kexec-tools.SlackBuild index 2539b9654e0f8..3092b42909b3c 100644 --- a/system/kexec-tools/kexec-tools.SlackBuild +++ b/system/kexec-tools/kexec-tools.SlackBuild @@ -4,13 +4,13 @@ # Written by powtrix (@gmail.com) PRGNAM=kexec-tools -VERSION=${VERSION:-2.0.9} +VERSION=${VERSION:-2.0.14} BUILD=${BUILD:-2} TAG=${TAG:-_SBo} if [ -z "$ARCH" ]; then case "$( uname -m )" in - i?86) ARCH=i486 ;; + i?86) ARCH=i586 ;; arm*) ARCH=arm ;; *) ARCH=$( uname -m ) ;; esac @@ -21,8 +21,8 @@ TMP=${TMP:-/tmp/SBo} PKG=$TMP/package-$PRGNAM OUTPUT=${OUTPUT:-/tmp} -if [ "$ARCH" = "i486" ]; then - SLKCFLAGS="-O2 -march=i486 -mtune=i686" +if [ "$ARCH" = "i586" ]; then + SLKCFLAGS="-O2 -march=i586 -mtune=i686" LIBDIRSUFFIX="" elif [ "$ARCH" = "i686" ]; then SLKCFLAGS="-O2 -march=i686 -mtune=i686" @@ -30,8 +30,8 @@ elif [ "$ARCH" = "i686" ]; then elif [ "$ARCH" = "x86_64" ]; then # Fixed by Thibaut # The -fPIC breaks the purgatory of kexec (= the code that passes - #command-line arguments to the kernel): kexec doesn't know how to - #handle the GOT and PLT relocation entries. + # command-line arguments to the kernel): kexec doesn't know how to + # handle the GOT and PLT relocation entries. SLKCFLAGS="-O2" LIBDIRSUFFIX="64" else |