diff options
author | Felix Fietkau <nbd@openwrt.org> | 2008-08-24 13:40:21 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2008-08-24 13:40:21 +0000 |
commit | 2311fc9850b95a9778c7504837aae12c53080a91 (patch) | |
tree | 0de272feb47057128c9cf9804aaf63212eeae210 /include | |
parent | 62333dabe1991261a58fe127844f1f152d242d7f (diff) | |
download | upstream-2311fc9850b95a9778c7504837aae12c53080a91.tar.gz upstream-2311fc9850b95a9778c7504837aae12c53080a91.tar.bz2 upstream-2311fc9850b95a9778c7504837aae12c53080a91.zip |
replace the deprecated git-* command calls with git *
SVN-Revision: 12379
Diffstat (limited to 'include')
-rw-r--r-- | include/download.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/download.mk b/include/download.mk index f064ee9e8c..b185f1ac36 100644 --- a/include/download.mk +++ b/include/download.mk @@ -82,8 +82,8 @@ define DownloadMethod/git cd $(TMP_DIR)/dl && \ rm -rf $(SUBDIR) && \ [ \! -d $(SUBDIR) ] && \ - git-clone $(URL) $(SUBDIR) && \ - (cd $(SUBDIR) && git-checkout $(VERSION)) && \ + git clone $(URL) $(SUBDIR) && \ + (cd $(SUBDIR) && git checkout $(VERSION)) && \ echo "Packing checkout..." && \ rm -rf $(SUBDIR)/.git && \ $(call dl_pack,$(TMP_DIR)/dl/$(FILE),$(SUBDIR)) && \ |