Skip to content
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

Write cmake_output under build_path #222

Merged
merged 2 commits into from
Dec 15, 2017
Merged

Conversation

robertodr
Copy link
Contributor

cmake_output was written to the root directory instead of under build_path.

@bast
Copy link
Member

bast commented Dec 15, 2017

Interesting! How come we never noticed? Is this new? The os.path.join paths should I think be comma-separated.

@robertodr
Copy link
Contributor Author

robertodr commented Dec 15, 2017 via email

@@ -75,7 +75,7 @@ def run_cmake(command, build_path, default_build_path):
sys.stderr.write(stderr)

# write cmake output to file
with open('cmake_output', 'w') as f:
with open(os.path.join(build_path + 'cmake_output'), 'w') as f:
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

And of course you're right that it need a comma.

@robertodr
Copy link
Contributor Author

You can squash the two commits if you'd like

@bast bast merged commit 9953b65 into dev-cafe:master Dec 15, 2017
@bast
Copy link
Member

bast commented Dec 15, 2017

Thanks a lot for the fix!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants