diff options
author | Kyle Guinn <elyk03@gmail.com> | 2020-02-15 22:37:19 -0600 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2020-02-24 06:10:11 +0700 |
commit | ebabe7b7598cf7ef1dc2b830730a61121fc4b82b (patch) | |
tree | c71d4147ef659398050f548f1d271c3366fc4b3c /development/sdcc/sdcc.SlackBuild | |
parent | 7e25d1ec284a502c7c071c0c21d236a137675654 (diff) |
development/sdcc: Updated for version 4.0.0.
Signed-off-by: Kyle Guinn <elyk03@gmail.com>
Diffstat (limited to 'development/sdcc/sdcc.SlackBuild')
-rw-r--r-- | development/sdcc/sdcc.SlackBuild | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/development/sdcc/sdcc.SlackBuild b/development/sdcc/sdcc.SlackBuild index 9a9fdf5f1f8b0..8e6a39a06f261 100644 --- a/development/sdcc/sdcc.SlackBuild +++ b/development/sdcc/sdcc.SlackBuild @@ -2,7 +2,7 @@ # Slackware build script for sdcc -# Copyright 2014-2019 Kyle Guinn <elyk03@gmail.com> +# Copyright 2014-2020 Kyle Guinn <elyk03@gmail.com> # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -23,7 +23,7 @@ # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. PRGNAM=sdcc -VERSION=${VERSION:-3.9.0} +VERSION=${VERSION:-4.0.0} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -81,6 +81,10 @@ patch -p1 < $CWD/patches/source-tree.patch # Avoid creating empty man directories. sed -i '/(man1dir)/d' sim/ucsim/doc/Makefile.in +# make considers device/lib/pic14/aclocal.m4 out-of-date and tries to +# rebuild it using aclocal-1.16 which doesn't exist yet on Slackware 14.2. +(cd device/lib/pic14 && autoreconf -vif) + # Requires lyx, latex2html, possibly others. Untested. if [ "${ENABLE_DOC:-no}" != 'no' ]; then enable_doc='--enable-doc' |