From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wi0-f171.google.com (mail-wi0-f171.google.com [209.85.212.171]) by dpdk.org (Postfix) with ESMTP id 4FA4C11C5 for ; Thu, 2 Jul 2015 13:48:24 +0200 (CEST) Received: by wiar9 with SMTP id r9so98395506wia.1 for ; Thu, 02 Jul 2015 04:48:24 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id:organization :user-agent:in-reply-to:references:mime-version :content-transfer-encoding:content-type; bh=FuOolPkdZTSK/nzCCPtB0pjXU1nUB2zeSwkpbA0OkyE=; b=CQkhIi2yLE/3yBGkOE+U9tWYqrsSdrlzHTRGQRnKLgjsdXjtOetc7Dz+Uttwf3VDBt XvZgGg+64yYPmNsJvKEoA9i0+x1xZGOLKrGoUzOJj3oI7Rp5/L3h2KmsbGGBD6ljY0b2 fMaSreUFoHv2QRq1ZCEwCLUJysb30t1zdnYju4Awxsc6oVhKsO1RmC9fsYFwRjXy28kP SBh4tyBjiOiWhpTYwKRN4o5EB8jD7AMAEp6qVlXYS6jDyjlx6A76815cFlHVuIDebhMP Q8zgwUmNiCU++0yhpWqAbMTlBEO5DE89pIUQ5YX0YosxgPmx2NSzolBlQJh+5e3GIjhi PaTg== X-Gm-Message-State: ALoCoQlDxJfRzcu4wPAAOp82St/DYfYP+opIVdjwt6ECMMwID+XYrk3JtKh61obZacyWvN9Ocrju X-Received: by 10.194.77.97 with SMTP id r1mr54493539wjw.98.1435837704130; Thu, 02 Jul 2015 04:48:24 -0700 (PDT) Received: from xps13.localnet (6wind.net2.nerim.net. [213.41.151.210]) by mx.google.com with ESMTPSA id s1sm20569095wik.4.2015.07.02.04.48.22 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Thu, 02 Jul 2015 04:48:23 -0700 (PDT) From: Thomas Monjalon To: Bruce Richardson Date: Thu, 02 Jul 2015 13:47:15 +0200 Message-ID: <6559806.joSdDiu3XO@xps13> Organization: 6WIND User-Agent: KMail/4.14.8 (Linux/4.0.4-2-ARCH; KDE/4.14.8; x86_64; ; ) In-Reply-To: <1435833337-26386-1-git-send-email-bruce.richardson@intel.com> References: <1435833337-26386-1-git-send-email-bruce.richardson@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Cc: dev@dpdk.org Subject: Re: [dpdk-dev] [PATCH] mk: print target when reporting build complete X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Jul 2015 11:48:24 -0000 2015-07-02 11:35, Bruce Richardson: > When a target is finished building, it reports just "Build complete". > When building multiple targets simultaneously, e.g. > make install T=x86_64-native-linuxapp-* > and one target fails, it's not always obvious which of the builds > failed. To help this, we add the actual target that is completed to the > "Build complete" message. > > Signed-off-by: Bruce Richardson Good idea. Applied, thanks