diff options
author | B. Watson <yalhcru@gmail.com> | 2017-03-20 23:57:29 -0400 |
---|---|---|
committer | David Spencer <idlemoor@slackbuilds.org> | 2017-03-25 13:28:04 +0000 |
commit | 00216af05c6e3a4a31b26731751030a8c0ea86a8 (patch) | |
tree | c2571a918ac45ec469a70ef7497d7c4d593860bc /graphics/xpe | |
parent | f8d01fb2fe6b88677e421e47380df0f5db6c8b9e (diff) | |
download | slackbuilds-00216af05c6e3a4a31b26731751030a8c0ea86a8.tar.gz |
graphics/xpe: Allow VERSION override, i486=>i586.
Signed-off-by: B. Watson <yalhcru@gmail.com>
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
Diffstat (limited to 'graphics/xpe')
-rw-r--r-- | graphics/xpe/xpe.SlackBuild | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/graphics/xpe/xpe.SlackBuild b/graphics/xpe/xpe.SlackBuild index 7155e9ac1c..8593821b74 100644 --- a/graphics/xpe/xpe.SlackBuild +++ b/graphics/xpe/xpe.SlackBuild @@ -7,7 +7,7 @@ # revision date 2009/10/07 PRGNAM=xpe -VERSION=0.9.5b +VERSION=${VERSION:-0.9.5b} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -19,7 +19,7 @@ SRCVERSION="v$(echo $VERSION | tr . _)" if [ -z "$ARCH" ]; then case "$( uname -m )" in - i?86) ARCH=i486 ;; + i?86) ARCH=i586 ;; arm*) ARCH=arm ;; *) ARCH=$( uname -m ) ;; esac @@ -30,8 +30,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" |