From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on sa.int.altlinux.org X-Spam-Level: X-Spam-Status: No, score=-2.6 required=5.0 tests=BAYES_00 autolearn=ham version=3.2.5 Date: Fri, 23 Nov 2012 14:30:02 +0200 From: Michael Shigorin To: devel-distro@lists.altlinux.org Message-ID: <20121123123002.GA27920@osdn.org.ua> Mail-Followup-To: devel-distro@lists.altlinux.org References: <1352372608.7954.6@ildar.innovations.kz> <1352514673.2732.1@ildar.innovations.kz> <20121110135910.GZ11474@osdn.org.ua> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="k+w/mQv8wyuph6w0" Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20121110135910.GZ11474@osdn.org.ua> User-Agent: Mutt/1.4.2.1i Subject: Re: [devel-distro] =?koi8-r?b?bWtpbWFnZS1wcm9maWxlczog0NLPwszFzdk=?= X-BeenThere: devel-distro@lists.altlinux.org X-Mailman-Version: 2.1.12 Precedence: list Reply-To: shigorin@gmail.com, Distributions development List-Id: Distributions development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 Nov 2012 12:30:11 -0000 Archived-At: List-Archive: --k+w/mQv8wyuph6w0 Content-Type: text/plain; charset=koi8-r Content-Disposition: inline Content-Transfer-Encoding: 8bit On Sat, Nov 10, 2012 at 03:59:10PM +0200, I wrote: > Проблема в вывале скрипта. И похоже, что в verbose(), > как это ни смешно -- а у меня маскировалась "DEBUG = 1" > в ~/.mkimage/profiles.mk; прошу проверить приложенный патч. Оказался он неполон. -- ---- WBR, Michael Shigorin ------ Linux.Kiev http://www.linux.kiev.ua/ --k+w/mQv8wyuph6w0 Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="0001-03-test-kernel-silliest-mistake-II.patch" >>From c30b921b4c4de21e5cb43dadc036cd58878b1c92 Mon Sep 17 00:00:00 2001 From: Michael Shigorin Date: Fri, 23 Nov 2012 16:03:32 +0400 Subject: [PATCH 1/3] 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 d9f27c2..12e68e4 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() -- 1.7.12.4 --k+w/mQv8wyuph6w0--