From patchwork Mon Apr 8 16:50:15 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Luca Ceresoli X-Patchwork-Id: 234843 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from silver.osuosl.org (silver.osuosl.org [140.211.166.136]) by ozlabs.org (Postfix) with ESMTP id 8CCA42C00A2 for ; Tue, 9 Apr 2013 02:51:06 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id E4CBF318CC; Mon, 8 Apr 2013 16:51:04 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from silver.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id lCusplIk9Z3S; Mon, 8 Apr 2013 16:50:49 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id 7FA1B31816; Mon, 8 Apr 2013 16:50:43 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id AEA9B8F75E for ; Mon, 8 Apr 2013 16:50:40 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 17FB889C7F for ; Mon, 8 Apr 2013 16:50:33 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id AGoFDRffAPmu for ; Mon, 8 Apr 2013 16:50:32 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from m-14.th.seeweb.it (m-14.th.seeweb.it [217.64.195.243]) by whitealder.osuosl.org (Postfix) with ESMTPS id 2919E8A8E1 for ; Mon, 8 Apr 2013 16:50:31 +0000 (UTC) Received: from wallace.comelit.it (host138-62-static.18-80-b.business.telecomitalia.it [80.18.62.138]) (authenticated bits=0) by m-14.th.seeweb.it (8.14.3/8.14.3/Debian-9.4) with ESMTP id r38GoNfR032165; Mon, 8 Apr 2013 18:50:29 +0200 From: Luca Ceresoli To: buildroot@busybox.net Date: Mon, 8 Apr 2013 18:50:15 +0200 Message-Id: <1365439816-6935-3-git-send-email-luca@lucaceresoli.net> X-Mailer: git-send-email 1.7.10.4 In-Reply-To: <1365439816-6935-1-git-send-email-luca@lucaceresoli.net> References: <1365439816-6935-1-git-send-email-luca@lucaceresoli.net> Cc: thomas.petazzoni@free-electrons.com, Luca Ceresoli Subject: [Buildroot] [PATCH v2 2/3] post-image: show each script filename before execution X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: buildroot-bounces@busybox.net Sender: buildroot-bounces@busybox.net This also simplifies code by removing the ifneq/endif clauses. Signed-off-by: Luca Ceresoli Tested-by: "Yann E. MORIN" Acked-by: "Yann E. MORIN" Acked-by: Arnout Vandecappelle (Essensium/Mind) --- Makefile | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 75f0f0c..f475d1b 100644 --- a/Makefile +++ b/Makefile @@ -555,11 +555,9 @@ target-generatelocales: host-localedef endif target-post-image: -ifneq ($(BR2_ROOTFS_POST_IMAGE_SCRIPT),"") - @$(call MESSAGE,"Executing post-image script\(s\)") @$(foreach s, $(call qstrip,$(BR2_ROOTFS_POST_IMAGE_SCRIPT)), \ + $(call MESSAGE,"Executing post-image script $(s)"); \ $(s) $(BINARIES_DIR)$(sep)) -endif toolchain-eclipse-register: ./support/scripts/eclipse-register-toolchain `readlink -f $(O)` $(notdir $(TARGET_CROSS)) $(BR2_ARCH)