-
Notifications
You must be signed in to change notification settings - Fork 569
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
seccomp filter are generated multible times #3393
Comments
To me the Makefile looks just fine. Probably it isn't a bug in Make either. Running |
I'm to a makefile expert, I don't see what's wrong, just that something is wrong. |
topimiettinen
added a commit
to topimiettinen/firejail
that referenced
this issue
May 4, 2020
Don't build all filters many times over but instead let them be built in parallel. Closes netblue30#3393
Merged
I think the problem was with use of .PHONY. |
glitsj16
pushed a commit
that referenced
this issue
May 4, 2020
Don't build all filters many times over but instead let them be built in parallel. Closes #3393
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Describe the bug
The following block in the Makefile is called multiple times with
make
andmake install
.firejail/Makefile.in
Lines 46 to 58 in 8c69eab
To Reproduce
Steps to reproduce the behavior:
@echo HELLO I AM CALLED
abovefirejail/Makefile.in
Line 49 in 8c69eab
./configure && make && make install
HELLO I AM CALLED
around 12 timesExpected behavior
seccomp filter are just generated once
cc @topimiettinen
The text was updated successfully, but these errors were encountered: