diff options
author | Frank Caraballo <fecaraballo{at}gmail{dot}com> | 2021-04-24 08:36:38 +0000 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2021-04-27 01:03:28 -0500 |
commit | d2e4c67490ea9bb36bcbacf1d8a8849efabf483d (patch) | |
tree | 2bc972885e8812466e3c9bf23fff77b94906dacc | |
parent | ec97cd5f6a99cd43b000bd86848ac75d50686dc7 (diff) |
python/tagpy: Fix boost_libname.
Signed-off-by: Dave Woodfall <dave@slackbuilds.org>
-rw-r--r-- | python/tagpy/tagpy.SlackBuild | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/python/tagpy/tagpy.SlackBuild b/python/tagpy/tagpy.SlackBuild index b4f8b61bb0724..022bf1791747e 100644 --- a/python/tagpy/tagpy.SlackBuild +++ b/python/tagpy/tagpy.SlackBuild @@ -24,12 +24,12 @@ PRGNAM=tagpy VERSION=${VERSION:-2013.1} -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" @@ -69,7 +69,7 @@ sed -i -e '/distribute_setup/d' -e "s/^if.*/if False:/" aksetup_helper.py ./configure.py \ --taglib-inc-dir="/usr/include/taglib" \ - --boost-python-libname="boost_python" \ + --boost-python-libname="boost_python27" \ --boost-inc-dir="/usr/include/boost" \ --boost-lib-dir="/usr/lib${LIBDIRSUFFIX}" \ || exit 1 |