From: Luis R. Rodriguez Date: Tue, 3 Apr 2012 08:16:02 +0000 (-0700) Subject: compat: use make -s X-Git-Tag: compat-2012-07-02~1^2~29 X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=89a4e35682bedcdad9582688cc78c7cd2716d7c4;p=~emulex%2Fcompat.git compat: use make -s Avoid printing anything other than errors. This *should* speed up compiling a bit more although current tests show no improvements yet. The real benefit is a smaller and cleaner ckmake.log which will only have warnings and errors. Signed-off-by: Luis R. Rodriguez --- diff --git a/bin/ckmake b/bin/ckmake index 8238436..56e1ec1 100755 --- a/bin/ckmake +++ b/bin/ckmake @@ -71,7 +71,7 @@ for i in $KLIBS; do log_try_kernel $KERNEL | ./scripts/skip-colors >> $LOG log_try_kernel $KERNEL - ionice -c 3 nice -n 20 make KLIB=$DIR KLIB_BUILD=$DIR -j6 -Wunused-but-set-variable &>> $LOG + ionice -c 3 nice -n 20 make -s KLIB=$DIR KLIB_BUILD=$DIR -j6 -Wunused-but-set-variable &>> $LOG if [[ $? -eq 0 ]]; then echo -e "${GREEN}[OK]${NORMAL}" | tee_color_split else