recurse to configure before build rather than calling configure() directly

This commit is contained in:
Josh Holtrop 2019-04-19 14:15:33 -04:00
parent 7a807575b2
commit 04fc9866c4

View File

@ -42,7 +42,7 @@ module Rscons
when "build"
unless Cache.instance["configuration_data"]["configured"]
if @script.autoconf
rv = configure(operation_options)
rv = run("configure", script, operation_options)
if rv != 0
return rv
end