diff options
author | powtrix <powtrix@gmail.com> | 2017-01-25 18:42:21 +0000 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2017-01-28 07:38:04 +0700 |
commit | c5b3b3c6961fb4828c3fe85b42ccb3ac43be8673 (patch) | |
tree | 5d3b156afa3a23a73eaa373ab1d766387a98988f /system/kexec-tools/kexec-tools.SlackBuild | |
parent | 1da64aa476ecdf76ad156541924069a57c9430a3 (diff) |
system/kexec-tools: Updated for version 2.0.14.
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
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 2539b9654e0f..3092b42909b3 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 |