diff options
author | Hunter Sezen <ovariegata@yahoo.com> | 2017-01-23 15:35:43 +0000 |
---|---|---|
committer | David Spencer <idlemoor@slackbuilds.org> | 2017-01-24 00:21:53 +0000 |
commit | c563ada2b858be937da326a2c1e62e3b904ae881 (patch) | |
tree | 05059ba543deef5da471eb63276376b9e25d24fb /libraries | |
parent | f4848ee6cd5dea65297db3d419702d37e1b8dcb1 (diff) |
libraries/libfreehand: Switch to i586.
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
Diffstat (limited to 'libraries')
-rw-r--r-- | libraries/libfreehand/libfreehand.SlackBuild | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/libraries/libfreehand/libfreehand.SlackBuild b/libraries/libfreehand/libfreehand.SlackBuild index 1d8802c3ad80..c553eb7aab09 100644 --- a/libraries/libfreehand/libfreehand.SlackBuild +++ b/libraries/libfreehand/libfreehand.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 @@ -39,8 +39,8 @@ CWD=$(pwd) 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" @@ -69,7 +69,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 CFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS" \ |