From 599c4d7c87fab531014a614f2a32b56be0a3ce28 Mon Sep 17 00:00:00 2001 From: Chris Johns Date: Tue, 21 Jan 2020 14:46:16 +1100 Subject: freebsd: Fix GDB building on some 12 and higher versions --- source-builder/sb/freebsd.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'source-builder/sb/freebsd.py') diff --git a/source-builder/sb/freebsd.py b/source-builder/sb/freebsd.py index 8fc7db1..5497e75 100644 --- a/source-builder/sb/freebsd.py +++ b/source-builder/sb/freebsd.py @@ -111,9 +111,11 @@ def load(): if check.check_exe(cvs, cvs): defines['__cvs'] = cvs # - # Fix the mess iconv is on FreeBSD 10.0. + # Fix the mess iconv is on FreeBSD 10.0 and higher. # defines['iconv_includes'] = ('none', 'none', '%{host_includes} %{host_ldflags}') + if fb_version >= 12: + defines['iconv_prefix'] = ('none', 'none', '%{_usr}') # # On 11.0+ makeinfo and install-info have moved to /usr/local/... -- cgit v1.2.3