Skip to content
Snippets Groups Projects
Commit d8cc1426 authored by Felix Fietkau's avatar Felix Fietkau
Browse files

allow newlines in prereq error messages

SVN-Revision: 6147
parent b69fd0a3
No related branches found
No related tags found
No related merge requests found
......@@ -27,7 +27,7 @@ define Require
echo 'ok.'; \
else \
echo 'failed.'; \
echo -e "$(strip $(2))" >> $(TMP_DIR)/.prereq-error; \
echo -e "$(strip $(2))" | perl -ne 's/\\\s*/\n/g,print' >> $(TMP_DIR)/.prereq-error; \
fi
check-$(1): FORCE
......
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