From 4bdf2e615b6ca4811b39a9ade90d17b8761c8801 Mon Sep 17 00:00:00 2001 From: Juan RP Date: Tue, 9 Nov 2010 00:47:29 +0100 Subject: [PATCH] xbps-src: be silent while checking for required host cmds. --- xbps-src/xbps-src.sh.in | 3 --- 1 file changed, 3 deletions(-) diff --git a/xbps-src/xbps-src.sh.in b/xbps-src/xbps-src.sh.in index bacbb2d4b1e..721603ded09 100644 --- a/xbps-src/xbps-src.sh.in +++ b/xbps-src/xbps-src.sh.in @@ -50,16 +50,13 @@ check_reqhost_utils() { [ -n "$in_chroot" ] && return 0 - echo -n "=> Checking for required host utilities... " for f in awk bash sed gcc msgfmt patch makeinfo perl fakeroot \ xbps-bin.static xbps-repo.static xbps-uhelper.static; do if ! command -v ${f} 2>&1 >/dev/null; then - echo echo "${f} is missing in your system, can't continue! exiting..." exit 1 fi done - echo "done." } usage()