From e9f60f007c83ca7150dc5132c96d9fbca7be7275 Mon Sep 17 00:00:00 2001 From: Michael Shigorin Date: Fri, 23 Nov 2012 16:03:32 +0400 Subject: [PATCH] 03-test-kernel: silliest mistake II The previous part was fixed and discussed in commit c30490e2e884f8655a2704fa6a84e60b13876874; so much for a deduplication effort... This would result in almost immediate make[1]: *** [profile/populate] Error 2 as well. --- features.in/stage2/stage1/scripts.d/03-test-kernel | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/features.in/stage2/stage1/scripts.d/03-test-kernel b/features.in/stage2/stage1/scripts.d/03-test-kernel index d9f27c2f..12e68e4b 100755 --- a/features.in/stage2/stage1/scripts.d/03-test-kernel +++ b/features.in/stage2/stage1/scripts.d/03-test-kernel @@ -7,7 +7,7 @@ GZ_OPTS="-comp gzip -noI" XZ_OPTS="-comp xz" LZO_OPTS="-comp lzo -noI" -verbose() { [ -n "$GLOBAL_VERBOSE" ] && echo "** $@" >&2; } +verbose() { [ -z "$GLOBAL_VERBOSE" ] || echo "** $@" >&2; } fatal() { echo "** error: $@" >&2; exit 1; } configured()