From c3766a99fff15ad8d3d3d936ac2838d4f1705a5c Mon Sep 17 00:00:00 2001 From: relikd Date: Wed, 3 Sep 2025 13:17:16 +0200 Subject: [PATCH] ref: link_bin_dependency default False --- brew.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/brew.py b/brew.py index c281ae7..b070550 100755 --- a/brew.py +++ b/brew.py @@ -906,7 +906,7 @@ class Config: ; whether install should link binaries of main package (user-installed) link_bin_primary = yes ; default: yes ; whether install should link binaries of dependencies -link_bin_dependency = yes ; default: yes +link_bin_dependency = no ; default: no [cleanup] ; unit: s|m|h|d (secs, mins, hours, days) @@ -927,7 +927,7 @@ auth = 365d ; default: 365d sec = ini['install'] Config.INSTALL = Config.Install( LINK_BIN_PRIM=sec.getboolean('link_bin_primary', fallback=True), - LINK_BIN_DEPS=sec.getboolean('link_bin_dependency', fallback=True), + LINK_BIN_DEPS=sec.getboolean('link_bin_dependency', fallback=False) ) sec = ini['cleanup'] Config.CLEANUP = Config.Cleanup(