diff options
author | David Woodfall <dave@dawoodfall.net> | 2018-03-27 12:53:25 +0000 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2018-03-31 07:41:32 +0700 |
commit | e936e109efdf4590b6dd00a80080224a7b7c96c6 (patch) | |
tree | 44f84e64930a007f06aeb4ae7cc3372242695e32 | |
parent | bbc3eec20f5c155477f01e46a4dc1234800b68e0 (diff) | |
download | slackbuilds-e936e109efdf4590b6dd00a80080224a7b7c96c6.tar.gz |
system/atool: Switch to i586.
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
-rw-r--r-- | system/atool/README | 4 | ||||
-rw-r--r-- | system/atool/atool.SlackBuild | 8 |
2 files changed, 6 insertions, 6 deletions
diff --git a/system/atool/README b/system/atool/README index 183ea20ea1..697bb6a676 100644 --- a/system/atool/README +++ b/system/atool/README @@ -1,7 +1,7 @@ -atool is a script for managing file archives of various types +atool is a script for managing file archives of various types (tar, tar+gzip, zip, etcetera). -The main command is aunpack which extracts files from an archive. +The main command is aunpack which extracts files from an archive. Did you ever extract files from an archive, not checking whether the files were located in a subdirectory or in the top directory of the archive, resulting in files scattered all over the place? aunpack diff --git a/system/atool/atool.SlackBuild b/system/atool/atool.SlackBuild index 81341100cd..fe7947a69c 100644 --- a/system/atool/atool.SlackBuild +++ b/system/atool/atool.SlackBuild @@ -24,12 +24,12 @@ PRGNAM=atool VERSION=${VERSION:-0.39.0} -BUILD=${BUILD:-1} +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 @@ -40,8 +40,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" |