Skip to content

Commit 30aca89

Browse files
authored
Merge pull request #1 from boegel/20250514153118_new_pr_openssl_wrapper
also run gcc command to determine system include paths in dry run mode in OpenSSL wrapper easyblock
2 parents 2d357c5 + fb76fbf commit 30aca89

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

easybuild/easyblocks/o/openssl_wrapper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ def __init__(self, *args, **kwargs):
261261

262262
# Check system include paths for OpenSSL headers
263263
cmd = "LC_ALL=C gcc -E -Wp,-v -xc /dev/null"
264-
res = run_shell_cmd(cmd, hidden=True)
264+
res = run_shell_cmd(cmd, hidden=True, in_dry_run=True)
265265

266266
sys_include_dirs = []
267267
for match in re.finditer(r'^\s(/[^\0\n]*)+', res.output, re.MULTILINE):

0 commit comments

Comments
 (0)