Skip to content
Snippets Groups Projects
Commit 9aca57b6 authored by Jo-Philipp Wich's avatar Jo-Philipp Wich
Browse files

include: don't rely on perl for printing prereq errors


Perl might not be present while checking prereqs, e.g. on a fresh
FreeBSD install.

Signed-off-by: default avatarJo-Philipp Wich <jow@openwrt.org>

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