Skip to content

Commit d366e53

Browse files
committed
avoid building gui by default
1 parent 1989a40 commit d366e53

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

runner/bitcoind.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -478,7 +478,8 @@ def build(self,
478478
configure_prefix +
479479
'./configure BDB_LIBS="-L${BDB_PREFIX}/lib -ldb_cxx-4.8" '
480480
'BDB_CFLAGS="-I${BDB_PREFIX}/include" ' +
481-
' {} '.format(target.configure_args) +
481+
'--without-gui ' + # TODO maybe make this configurable?
482+
target.configure_args +
482483
# Ensure ccache is disabled so that subsequent make runs
483484
# are timed accurately.
484485
'--disable-ccache ' + boostflags)

0 commit comments

Comments
 (0)