-
-
Notifications
You must be signed in to change notification settings - Fork 8.2k
ports/esp32/Makefile: Fix path expansion for ESPIDF_DRIVER_O #4919
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
See #4874 for where this was added, in particular the discussion there about trying to fit this on one line. I guess it's not possible to do that? |
It was using subst to s/.c/.o/ which changed .c anywhere in the path. (I have ESPIDF set to `/home/jimmo/src/github.com/espressif/esp-idf`, resulting in github.oom)
I spoke to @nevercast and apparently there were issues in their build using
He's going to get back to me with more details. |
I was sick last week and didn't get around to checking on this, I'll get to it this week. Sorry about the delay. |
585a1c6
to
9a69ef3
Compare
I've updated to use |
I've spoken with @jimmo in Slack and while I haven't found the time to test this personally, I'm happy for the change. I have a build server at work that will test this commit against my own codebase as soon as it lands in #master so I'm not too worried. |
I checked locally and it builds fine, builds the same way as before this patch. Also Travis is green. Merged in 331c224 |
Jenkins passed at my end too 🎉 |
Great! |
See #4935 for a follow up. |
…n-main Translations update from Weblate
It was using subst to s/.c/.o/ which changed .c anywhere in the path. (I have ESPIDF set to
/home/jimmo/src/github.com/espressif/esp-idf
, resulting in github.oom)