-
Notifications
You must be signed in to change notification settings - Fork 23
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Quotes removed in setup_command #261
Comments
I think we hit this problem 2-3 years ago with @bast and the conclusion was that it's actually the shell that handles quotes, not Python. So it's next to impossible to do what you ask in a consistent manner. |
Can we put a "reminder" in a separate line? Something like:
It would spare us some time, considering that we will eventually forget that, given that it happens with the frequency of a leap year. |
This is where we already wrestled with it: dev-cafe/autocmake#169 |
What I suggest as a "patch" is simply to append the |
Warning is definitely doable. I will again look at this issue. |
But don't work in shifts for it, OK? ;-) |
We have a team on it. |
I looked at it again and here are my findings: dev-cafe/autocmake#169 (comment). So there might be a solution. |
There is a solution: dev-cafe/autocmake#264 - once this is in, it will require that you regenerate |
@ilfreddy Radovan's fix in dev-cafe/autocmake#264 has now been merged. You should regenerate
and try again. |
Fixed by #291 |
The setup command line of each build is stored in
setup_command
for future reference. However, when more than one option is passed tocmake
via the--cmake_options
flag, the sting is stored without hyphens--cmake_options=-Doption_a -Doption_b
. The right command line should contain--cmake_options='-Doption_a -Doption_b'
.I guess it has to do with the handling of such a string by python.
The text was updated successfully, but these errors were encountered: