Skip to content

Commit dfd0ea7

Browse files
Waf Projectanoopcs9
authored andcommitted
third_party/waf: Explicit standard GNU directory command line options are not honoured
ref: https://gitlab.com/ita1024/waf/-/issues/2470 (cherry picked from commit aeec9358394f883f63b3ad78c2857117ca2cdfb4) Signed-off-by: Noel Power <noel.power@suse.com> Reviewed-by: Anoop C S <anoopcs@samba.org> Autobuild-User(master): Anoop C S <anoopcs@samba.org> Autobuild-Date(master): Fri Jun 6 10:53:07 UTC 2025 on atb-devel-224
1 parent db7497a commit dfd0ea7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

third_party/waf/waflib/Tools/gnu_dirs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ def configure(conf):
7575
BINDIR and LIBDIR will be overwritten.
7676
"""
7777
def get_param(varname, default):
78-
return getattr(Options.options, varname, '') or default
78+
return getattr(Options.options, varname.lower(), '') or default
7979

8080
env = conf.env
8181
env.LIBDIR = env.BINDIR = []

0 commit comments

Comments
 (0)