diff options
author | Waldemar Brodkorb <wbrodkorb@conet.de> | 2015-02-04 15:53:52 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbrodkorb@conet.de> | 2015-02-04 15:53:52 +0100 |
commit | 684cbc081d43a46cd5230844b29f4ba0956591fa (patch) | |
tree | 2515cdce29ad119599a22f9e1c66a1833e17eaba | |
parent | 845514696c95e2dbab6fb1bd437f39ac013a265d (diff) |
use quiet cloning
-rw-r--r-- | mk/fetch.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mk/fetch.mk b/mk/fetch.mk index 2fdbf521d..18d652f0f 100644 --- a/mk/fetch.mk +++ b/mk/fetch.mk @@ -64,7 +64,7 @@ $(1): for url in "${PKG_SITES}"; do case $$$$url in \ git://*|*.git) \ rm -rf $${PKG_NAME}-$${PKG_VERSION}; \ - git clone $${PKG_SITES} $${PKG_NAME}-$${PKG_VERSION}; \ + git clone --quiet $${PKG_SITES} $${PKG_NAME}-$${PKG_VERSION}; \ if [ $$$$(echo $${PKG_VERSION}|wc -c) -eq 41 ]; then \ (cd $${PKG_NAME}-$${PKG_VERSION}; \ echo "Checking out $${PKG_VERSION}"; \ |