diff options
author | Felix Fietkau <nbd@openwrt.org> | 2007-11-16 03:10:40 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2007-11-16 03:10:40 +0000 |
commit | 224760dee7a5f0913d894b7a23cc8d94b353dd70 (patch) | |
tree | 22913c0d4285a39280e60ed103f8f7872fcef437 /include/prereq-build.mk | |
parent | 029df8cc2e5f5f49d9dea1863fd9a9f37af7ccc0 (diff) | |
download | mtk-20170518-224760dee7a5f0913d894b7a23cc8d94b353dd70.zip mtk-20170518-224760dee7a5f0913d894b7a23cc8d94b353dd70.tar.gz mtk-20170518-224760dee7a5f0913d894b7a23cc8d94b353dd70.tar.bz2 |
add git checkout support
SVN-Revision: 9553
Diffstat (limited to 'include/prereq-build.mk')
-rw-r--r-- | include/prereq-build.mk | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/include/prereq-build.mk b/include/prereq-build.mk index c31020c..9b77a1b 100644 --- a/include/prereq-build.mk +++ b/include/prereq-build.mk @@ -119,6 +119,18 @@ $(eval $(call Require,gnutar, \ Please install GNU tar. \ )) +define Require/git + which git-clone +endef + +$(eval $(call Require,git, \ + Please install git. \ +)) + +$(eval $(call RequireCommand,svn, \ + Please install the subversion client. \ +)) + $(eval $(call RequireCommand,autoconf, \ Please install GNU autoconf. \ )) |