From patchwork Tue May 6 10:51:19 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thomas De Schampheleire X-Patchwork-Id: 346127 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ozlabs.org (Postfix) with ESMTP id 28C151412FA for ; Tue, 6 May 2014 20:53:33 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 41A818B230; Tue, 6 May 2014 10:53:32 +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 BP+KmOg-2-xo; Tue, 6 May 2014 10:53:31 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by whitealder.osuosl.org (Postfix) with ESMTP id 4F29C8BC56; Tue, 6 May 2014 10:53:31 +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 461771BF9A7 for ; Tue, 6 May 2014 10:53:30 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 417998BC56 for ; Tue, 6 May 2014 10:53:30 +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 qO0RaxxCNo5F for ; Tue, 6 May 2014 10:53:29 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail-wg0-f50.google.com (mail-wg0-f50.google.com [74.125.82.50]) by whitealder.osuosl.org (Postfix) with ESMTPS id 74E608B230 for ; Tue, 6 May 2014 10:53:29 +0000 (UTC) Received: by mail-wg0-f50.google.com with SMTP id x12so2616318wgg.33 for ; Tue, 06 May 2014 03:53:28 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=content-type:mime-version:content-transfer-encoding:subject :message-id:user-agent:date:from:to; bh=WoS6IbVncWOGG7u8nxVsbaHPb9d6SvB1q+MkgsHqNUA=; b=cNRrOXv6w/djrvUnlo+OGAI09/bFFVQ0JwwSMNRI2y5KHRfzwi2THCeSRNUQ4avhXq ONkoguoJejxGBWHXWMpb2/ToJ96DaHRPcPOlSlytEiKpVyXKdMpXrx0wmNuP99l4MutD BhC41YLD8oau26yZb3mMP04hf+OSEe/EjMhnkaMx7ZrPyDLP1mmb+uSGvk2em91pVBo4 RztmnOK6fp5CMfTIl0d16h8ke7//ZSp21rbx59ktpUKExzWqRzedCEqEHLhx4MMhkw9E kHJU1a3dGET4z5kkOkwNyTOt9OzkFGHk93Bu6jgoJBV0ZBtUs7q/7SFSc7mAY9G3yUi1 IDWA== X-Received: by 10.194.80.7 with SMTP id n7mr32547045wjx.8.1399373607931; Tue, 06 May 2014 03:53:27 -0700 (PDT) Received: from [127.0.1.1] (alc112.alcatel.be. [195.207.101.112]) by mx.google.com with ESMTPSA id ej7sm23924895wib.9.2014.05.06.03.53.26 for (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Tue, 06 May 2014 03:53:27 -0700 (PDT) MIME-Version: 1.0 X-Mercurial-Node: 0533846efc99529012838c7163fe09e6d2f1e06c Message-Id: <0533846efc9952901283.1399373479@argentina> User-Agent: Mercurial-patchbomb/2.2.2 Date: Tue, 06 May 2014 12:51:19 +0200 From: Thomas De Schampheleire To: buildroot@buildroot.org Subject: [Buildroot] [PATCH] toolchain package: set version as 'virtual' instead of 'undefined' 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: , Errors-To: buildroot-bounces@busybox.net Sender: buildroot-bounces@busybox.net This patch causes the log messages to change from: >>> toolchain-external undefined Downloading >>> toolchain-external undefined Extracting ... to >>> toolchain-external virtual Downloading >>> toolchain-external virtual Extracting ... and similar for 'toolchain' and 'toolchain-buildroot', simply because it looks nicer. At the same time, the directory names also become toolchain-virtual, toolchain-buildroot-virtual, toolchain-external-virtual instead of the corresponding 'undefined' variants. Signed-off-by: Thomas De Schampheleire --- toolchain/toolchain-buildroot/toolchain-buildroot.mk | 1 + toolchain/toolchain-external/toolchain-external.mk | 2 ++ toolchain/toolchain/toolchain.mk | 1 + 3 files changed, 4 insertions(+), 0 deletions(-) diff --git a/toolchain/toolchain-buildroot/toolchain-buildroot.mk b/toolchain/toolchain-buildroot/toolchain-buildroot.mk --- a/toolchain/toolchain-buildroot/toolchain-buildroot.mk +++ b/toolchain/toolchain-buildroot/toolchain-buildroot.mk @@ -5,6 +5,7 @@ ################################################################################ TOOLCHAIN_BUILDROOT_SOURCE = +TOOLCHAIN_BUILDROOT_VERSION = virtual BR_LIBC = $(call qstrip,$(BR2_TOOLCHAIN_BUILDROOT_LIBC)) diff --git a/toolchain/toolchain-external/toolchain-external.mk b/toolchain/toolchain-external/toolchain-external.mk --- a/toolchain/toolchain-external/toolchain-external.mk +++ b/toolchain/toolchain-external/toolchain-external.mk @@ -383,6 +383,8 @@ TOOLCHAIN_EXTERNAL_SITE = TOOLCHAIN_EXTERNAL_SOURCE = endif +TOOLCHAIN_EXTERNAL_VERSION = virtual + TOOLCHAIN_EXTERNAL_ADD_TOOLCHAIN_DEPENDENCY = NO TOOLCHAIN_EXTERNAL_INSTALL_STAGING = YES diff --git a/toolchain/toolchain/toolchain.mk b/toolchain/toolchain/toolchain.mk --- a/toolchain/toolchain/toolchain.mk +++ b/toolchain/toolchain/toolchain.mk @@ -5,6 +5,7 @@ ################################################################################ TOOLCHAIN_SOURCE = +TOOLCHAIN_VERSION = virtual ifeq ($(BR2_TOOLCHAIN_BUILDROOT),y) TOOLCHAIN_DEPENDENCIES += toolchain-buildroot