-
Notifications
You must be signed in to change notification settings - Fork 117
replace hard coded dependency on gcc #434
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
Conversation
c45258d to
25e81f7
Compare
|
Thanks for contributing here. Please sign-off the commits in your PRs ( |
25e81f7 to
2face26
Compare
|
The DCO CI check is still failing because:
You need to make the author of the commit match the Signed-off-by - I think this is a setting in GitHub, where it uses their generated noreply email address. |
Makefile
Outdated
| endif | ||
|
|
||
| OS = $(shell uname -s) | ||
| CC?= gcc |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This doesn't really work, by default CC will be cc (at least on GNU Make) which means this assignment will never happen.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
removed the line!
2face26 to
7e58579
Compare
tylerfanelli
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM.
fix: containers#433 Signed-off-by: Pepper Gray <[email protected]>
fixes #433