summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Johns <chrisj@rtems.org>2017-03-21 14:08:45 +1100
committerChris Johns <chrisj@rtems.org>2017-03-21 14:08:45 +1100
commit462f915e30cd5b70d2187a3dfe5fdb5f602193be (patch)
tree81ac1f648820fa479141b498b12562308fc0ecaa
parentgdb: Build with system readline and use MinGW compilers. (diff)
downloadrtems-source-builder-462f915e30cd5b70d2187a3dfe5fdb5f602193be.tar.bz2
freebsd: Update makeinfo and install-info paths on FreeBSD 11.0
Close #2947.
-rw-r--r--source-builder/sb/freebsd.py10
1 files changed, 9 insertions, 1 deletions
diff --git a/source-builder/sb/freebsd.py b/source-builder/sb/freebsd.py
index 0c00edd..28f70b9 100644
--- a/source-builder/sb/freebsd.py
+++ b/source-builder/sb/freebsd.py
@@ -77,7 +77,8 @@ def load():
# FreeBSD 10 and above no longer have /usr/bin/cvs, but it can (e.g.) be
# installed to /usr/local/bin/cvs through the devel/cvs port
- if int(float(version)) >= 10:
+ fb_version = int(float(version))
+ if fb_version >= 10:
#
# FreeBSD has switched to clang plus gcc. On 10.0 cc is gcc based and
# clang is provided however it is not building binutils-2.24.
@@ -109,6 +110,13 @@ def load():
# Fix the mess iconv is on FreeBSD 10.0.
#
defines['iconv_includes'] = ('none', 'none', '-I/usr/local/include -L/usr/local/lib')
+
+ #
+ # On 11.0+ makeinfo and install-info have moved to /usr/local/...
+ #
+ if fb_version >= 11:
+ defines['__install_info'] = ('exe', 'optional', '/usr/local/bin/install-info')
+ defines['__makeinfo'] = ('exe', 'required', '/usr/local/bin/makeinfo')
else:
for gv in ['49', '48', '47']:
gcc = '%s-portbld-freebsd%s-gcc%s' % (cpu, version, gv)