From cedd5ab74a422b2cbaa026d47204a55ee4be540b Mon Sep 17 00:00:00 2001 From: Simon Branford Date: Sat, 3 Feb 2024 19:47:46 +0000 Subject: [PATCH] enable rpath by default --- easybuild/tools/options.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/easybuild/tools/options.py b/easybuild/tools/options.py index be5cf94f75..cb6ec2022f 100644 --- a/easybuild/tools/options.py +++ b/easybuild/tools/options.py @@ -489,7 +489,7 @@ def override_options(self): 'required-linked-shared-libs': ("Comma-separated list of shared libraries (names, file names, or paths) " "which must be linked in all installed binaries/libraries", 'strlist', 'extend', None), - 'rpath': ("Enable use of RPATH for linking with libraries", None, 'store_true', False), + 'rpath': ("Enable use of RPATH for linking with libraries", None, 'store_true', True), 'rpath-filter': ("List of regex patterns to use for filtering out RPATH paths", 'strlist', 'store', None), 'rpath-override-dirs': ("Path(s) to be prepended when linking with RPATH (string, colon-separated)", None, 'store', None),