diff options
author | Hunter Sezen <ovariegata@yahoo.com> | 2017-01-23 15:27:00 +0000 |
---|---|---|
committer | David Spencer <idlemoor@slackbuilds.org> | 2017-01-24 00:21:51 +0000 |
commit | 8ccca9de12de4a115b96f0626b03ca9e8865cbf0 (patch) | |
tree | 5dbe80d425790845667dca2277c92e184e567fc7 /libraries/libe-book/libe-book.SlackBuild | |
parent | f25c604f6556a0ce7f3a125ebdd9e065df45ae61 (diff) | |
download | slackbuilds-8ccca9de12de4a115b96f0626b03ca9e8865cbf0.tar.gz |
libraries/libe-book: Switch to i586.
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
Diffstat (limited to 'libraries/libe-book/libe-book.SlackBuild')
-rw-r--r-- | libraries/libe-book/libe-book.SlackBuild | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/libraries/libe-book/libe-book.SlackBuild b/libraries/libe-book/libe-book.SlackBuild index 52893aa65e..359e9bd04a 100644 --- a/libraries/libe-book/libe-book.SlackBuild +++ b/libraries/libe-book/libe-book.SlackBuild @@ -29,7 +29,7 @@ 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" @@ -70,7 +70,11 @@ find -L . \ -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; DOC=${DOC:-no} -if [ ! "${DOC:-yes}" == "yes" ]; then doc="--without-docs"; else doc=""; fi +if [ ! "$DOC" = "yes" ]; then + doc="--without-docs" +else + doc="" +fi if pkg-config --exists cppunit; then cppunit=""; else cppunit="--disable-tests"; fi |