diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2015-02-06 11:50:08 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2015-02-06 11:50:08 +0000 |
commit | 330fcd48e5282485e1d5c4f339cfc1caf1027497 (patch) | |
tree | 8338ac633e8075cb3671fffe1d6291bba00853be /include/prereq-build.mk | |
parent | 865647cea2b00c6cc13b790a98d8808ff9f9fb9a (diff) | |
download | upstream-330fcd48e5282485e1d5c4f339cfc1caf1027497.tar.gz upstream-330fcd48e5282485e1d5c4f339cfc1caf1027497.tar.bz2 upstream-330fcd48e5282485e1d5c4f339cfc1caf1027497.zip |
include: rework git prereq test to not require 'man'
Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
SVN-Revision: 44292
Diffstat (limited to 'include/prereq-build.mk')
-rw-r--r-- | include/prereq-build.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/prereq-build.mk b/include/prereq-build.mk index 1c8de0638e..7945f05325 100644 --- a/include/prereq-build.mk +++ b/include/prereq-build.mk @@ -143,7 +143,7 @@ $(eval $(call SetupHostCommand,svn,Please install the Subversion client, \ svn --version | grep Subversion)) $(eval $(call SetupHostCommand,git,Please install Git (git-core) >= 1.6.5, \ - git clone --help | grep -- --recursive)) + git clone 2>&1 | grep -- --recursive)) $(eval $(call SetupHostCommand,file,Please install the 'file' package, \ file --version | grep file)) |