Skip to content
Snippets Groups Projects
Commit e6a9aacd authored by Christoph Grüninger's avatar Christoph Grüninger
Browse files

[headercheck] Get rid of warnings when running make in parallel

The warning with more then one job was: "make[1]: warning:
jobserver unavailable: using -j1. Add `+' to parent make rule."
Still, I get no speedup for -jN with N > 1.
parent fc625172
No related branches found
No related tags found
No related merge requests found
......@@ -52,7 +52,7 @@ headercheck-am:
echo "#include <$${HEADER}>" >> $$CCFILE; \
echo "#include <$${HEADER}>" >> $$CCFILE; \
echo "int main () { return 0; }" >> $$CCFILE; \
make $$OFILE > $$LOGFILE 2>&1; \
$(MAKE) $$OFILE > $$LOGFILE 2>&1; \
SUCCESS=$$?; \
if ! (test $$SUCCESS -eq 0 && test -e $$OFILE); then \
echo "Error in $$HEADER"; \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment