From 32459eb0c8ed66a87cf4d0a40dfd61f1aa316287 Mon Sep 17 00:00:00 2001 From: "Gary E. Miller" Date: Wed, 27 Mar 2019 18:54:58 -0700 Subject: SConstruct: Change manbuilder to work with scons 3.0.5 env is not the playground it once was. scons 3.0.5 still broken with gpsd... --- SConstruct | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'SConstruct') diff --git a/SConstruct b/SConstruct index 719d6c0f..124814f6 100644 --- a/SConstruct +++ b/SConstruct @@ -969,9 +969,12 @@ else: else: announce("Build of man and HTML documentation is disabled.") if manbuilder: - env['BUILDERS']["Man"] = Builder(action=manbuilder) - env['BUILDERS']["HTML"] = Builder(action=htmlbuilder, - src_suffix=".xml", suffix=".html") + # 18.2. Attaching a Builder to a Construction Environment + env.Append(BUILDERS = {"Man" : Builder(action=manbuilder, + src_suffix=".xml")}) + env.Append(BUILDERS = {"HTML" : Builder(action=htmlbuilder, + src_suffix=".xml", + suffix=".html")}) # Determine if Qt network libraries are present, and # if not, force qt to off -- cgit v1.2.1