-
Here's my problem in a nutshell, when my script does Error message:
Despite doing:
As shown here: What am I doing wrong here? Meson v1.6.1 for the record =) |
Beta Was this translation helpful? Give feedback.
Answered by
bonzini
Jan 10, 2025
Replies: 1 comment 1 reply
-
"join" is not the same as Python's
After listify-ing the arguments:
And this is just Instead you want
|
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
bonzini
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
"join" is not the same as Python's
os.path.join
, it's the same as String.join. You haveAfter listify-ing the arguments:
And this is just
'foo'
.Instead you want