diff options
-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}"; \ |