From patchwork Tue Jul 29 21:12:42 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: 374581 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from fraxinus.osuosl.org (fraxinus.osuosl.org [140.211.166.137]) by ozlabs.org (Postfix) with ESMTP id 2BD77140095 for ; Wed, 30 Jul 2014 07:13:18 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id 38D098B0DE; Tue, 29 Jul 2014 21:13:17 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from fraxinus.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 3IJnbWCodb5a; Tue, 29 Jul 2014 21:13:16 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by fraxinus.osuosl.org (Postfix) with ESMTP id E899A8B04F; Tue, 29 Jul 2014 21:13:15 +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 DA2891BFA15 for ; Tue, 29 Jul 2014 21:13:02 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id D75638BD5F for ; Tue, 29 Jul 2014 21:13:02 +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 dTdwATLHWQSv for ; Tue, 29 Jul 2014 21:13:02 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail-wi0-f177.google.com (mail-wi0-f177.google.com [209.85.212.177]) by whitealder.osuosl.org (Postfix) with ESMTPS id 3F1868B9CF for ; Tue, 29 Jul 2014 21:13:02 +0000 (UTC) Received: by mail-wi0-f177.google.com with SMTP id ho1so1246912wib.10 for ; Tue, 29 Jul 2014 14:13:00 -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:in-reply-to:references:user-agent:date:from:to:cc; bh=KdJa0Wtnmn8GNdTKPgNVfoD/JhBxnqNguvtWvZbjI6Y=; b=06FkI/eF41yLs4oXYb0GftRMTe2PlL3gwNyFAdpHtwFchr6ts07PmX4FB4H4oPQAQE AqV3A6k2Hug0PTHBdxMDWz19V22pE/RjJ6T8yWDjjsJbDqb7/vq6R5rMASR3N8Fi6lQx HaOr6xQM3qz0gLXEKweafH0bYPrD75wwwoq2EM0CM8J1CI4GzUI2JOPd+mqfTSBl5603 zcc4zwZtEmhea1Nbq6W1ecKt1+dKhJ0JE/xy5UQmfXkwHlsYpwrzwYGHXz0Kz9r9e+2Q rOJTWcnvH4sU5mAAtJvl3nsUHOdb2I2DqKbSxb934I6zv2PU/18V0P2ohsytpHL4XpQp RUZA== X-Received: by 10.194.10.167 with SMTP id j7mr7480879wjb.100.1406668380702; Tue, 29 Jul 2014 14:13:00 -0700 (PDT) Received: from [127.0.0.1] (d54C62EEB.access.telenet.be. [84.198.46.235]) by mx.google.com with ESMTPSA id de6sm351141wjc.16.2014.07.29.14.12.59 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 29 Jul 2014 14:12:59 -0700 (PDT) MIME-Version: 1.0 X-Mercurial-Node: d98d25de70f288dd371341ed2ef44a61adfa9fc1 Message-Id: In-Reply-To: References: User-Agent: Mercurial-patchbomb/2.7.2 Date: Tue, 29 Jul 2014 23:12:42 +0200 From: Thomas De Schampheleire To: buildroot@buildroot.org Cc: thomas.petazzoni@free-electrons.com, "Yann E. MORIN" Subject: [Buildroot] [PATCH 15 of 20] pkg-generic: add check on deprecated variable FOO_CONF_OPT 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 introduces a check for the usage of deprecated variable FOO_CONF_OPT, and suggests to use FOO_CONF_OPTS instead. Signed-off-by: Thomas De Schampheleire --- package/pkg-generic.mk | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff -r f3169fb7c3a5 -r d98d25de70f2 package/pkg-generic.mk --- a/package/pkg-generic.mk Tue Jul 29 21:55:40 2014 +0200 +++ b/package/pkg-generic.mk Tue Jul 29 21:56:34 2014 +0200 @@ -724,6 +724,7 @@ $(eval $(call check-deprecated-variable,$(2)_INSTALL_STAGING_OPT,$(2)_INSTALL_STAGING_OPTS)) $(eval $(call check-deprecated-variable,$(2)_INSTALL_HOST_OPT,$(2)_INSTALL_HOST_OPTS)) $(eval $(call check-deprecated-variable,$(2)_AUTORECONF_OPT,$(2)_AUTORECONF_OPTS)) +$(eval $(call check-deprecated-variable,$(2)_CONF_OPT,$(2)_CONF_OPTS)) TARGETS += $(1)