summaryrefslogtreecommitdiffstats
path: root/development
diff options
context:
space:
mode:
author Robby Workman2021-04-27 07:12:30 +0200
committer Robby Workman2021-04-27 08:03:53 +0200
commitf4d26d11771513bf7db4b8036c727bacd2af0378 (patch)
tree77c63b51290ffdcdfe3fb41494856a35ee2a6e38 /development
parentd7e474d1be6bc50ba8674902914215a3a66b1a74 (diff)
downloadslackbuilds-f4d26d11771513bf7db4b8036c727bacd2af0378.tar.gz
development/texi2html: s,i486,i586,g and see commit note below
Upstream recommending that users of texi2html migrate to using texi2any instead, so consider this tool deprecated.
Diffstat (limited to 'development')
-rw-r--r--development/texi2html/README5
-rw-r--r--development/texi2html/texi2html.SlackBuild8
2 files changed, 9 insertions, 4 deletions
diff --git a/development/texi2html/README b/development/texi2html/README
index c242251831..c0afd88eab 100644
--- a/development/texi2html/README
+++ b/development/texi2html/README
@@ -1 +1,6 @@
texi2html converts texinfo documents to HTML, Info, docbook, and XML.
+
+Consider texi2html to be deprecated: according to its homepage,
+"the route forward for authors is, in most cases, to alter manuals
+and build processes as necessary to use the new features of the
+makeinfo/texi2any implementation of GNU Texinfo.
diff --git a/development/texi2html/texi2html.SlackBuild b/development/texi2html/texi2html.SlackBuild
index 4e3021608e..26917bcd08 100644
--- a/development/texi2html/texi2html.SlackBuild
+++ b/development/texi2html/texi2html.SlackBuild
@@ -2,7 +2,7 @@
# Slackware build script for texi2html
-# Copyright 2013 Robby Workman, Northport, Alabama, USA
+# Copyright 2013-2021 Robby Workman, Tuscaloosa, Alabama, USA
# All rights reserved.
#
# Redistribution and use of this script, with or without modification, is
@@ -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"