-
Notifications
You must be signed in to change notification settings - Fork 2k
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
pkg: oonf_api: make patch not working #884
Comments
While you're at it, you can add this update for #880 : diff --git a/pkg/oonf_api/0001-add-RIOT-support.patch b/pkg/oonf_api/0001-add-RIOT-support.patch
index 971a8a2..bbfe37d 100644
--- a/pkg/oonf_api/0001-add-RIOT-support.patch
+++ b/pkg/oonf_api/0001-add-RIOT-support.patch
@@ -54,7 +54,7 @@ index 0000000..cf66baa
+
+all:
+ mkdir -p $(BINDIR)
-+ @for i in $(DIRS) ; do $(MAKE) -C $$i ; done ;
++ @for i in $(DIRS) ; do $(MAKE) -C $$i || exit 1; done ;
+
+clean:
diff --git a/external/regex/Makefile b/external/regex/Makefile |
Now this is very strange, I can't reproduce this,
afterwards I can run I've created #895 to make the make loop abort on error as you suggested. I guess someone has to ack it before I can merge it? (Yay, I've got the power to merge :D) What error handling do you suggest with git btw? I looks like it tried to apply the patches to an empty folder (and therefore the underlying RIOT git), but this should never happen to begin with. |
Could you try checking out |
Yes, when I do
it builds. |
|
Ok, when I try to build it with make 4.0 on Arch I get the same error, are you using that version too? |
Does it build when you change |
No, it doesn't. |
sorry, I was in the wrong terminal… |
Yup, could you include it? |
it's in the pull request, can I merge it? |
See discussion over at the PR |
I followed #630 (comment) and got:
After
mkdir oonf_api
I get:Now:
Would be nice to add some kind of error handling..
The text was updated successfully, but these errors were encountered: