mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-20 06:08:08 +00:00
include: fix prereq tests for perl and file (#18911)
Signed-off-by: Jo-Philipp Wich <jow@openwrt.org> SVN-Revision: 44296
This commit is contained in:
parent
60eef7aefd
commit
13a0f0d621
@ -132,7 +132,7 @@ $(eval $(call SetupHostCommand,wget,Please install GNU 'wget', \
|
|||||||
wget --version | grep GNU))
|
wget --version | grep GNU))
|
||||||
|
|
||||||
$(eval $(call SetupHostCommand,perl,Please install Perl 5.x, \
|
$(eval $(call SetupHostCommand,perl,Please install Perl 5.x, \
|
||||||
perl --version | grep "perl 5"))
|
perl --version | grep "perl.*v5"))
|
||||||
|
|
||||||
$(eval $(call SetupHostCommand,python,Please install Python 2.x, \
|
$(eval $(call SetupHostCommand,python,Please install Python 2.x, \
|
||||||
python2.7 -V 2>&1 | grep Python, \
|
python2.7 -V 2>&1 | grep Python, \
|
||||||
@ -146,7 +146,7 @@ $(eval $(call SetupHostCommand,git,Please install Git (git-core) >= 1.6.5, \
|
|||||||
git clone 2>&1 | grep -- --recursive))
|
git clone 2>&1 | grep -- --recursive))
|
||||||
|
|
||||||
$(eval $(call SetupHostCommand,file,Please install the 'file' package, \
|
$(eval $(call SetupHostCommand,file,Please install the 'file' package, \
|
||||||
file --version | grep file))
|
file --version 2>&1 | grep file))
|
||||||
|
|
||||||
$(eval $(call SetupHostCommand,openssl,Please install the 'openssl' utility, \
|
$(eval $(call SetupHostCommand,openssl,Please install the 'openssl' utility, \
|
||||||
openssl version | grep OpenSSL))
|
openssl version | grep OpenSSL))
|
||||||
|
Loading…
Reference in New Issue
Block a user