From patchwork Tue Jul 29 21:12:44 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: 374592 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 9BB87140194 for ; Wed, 30 Jul 2014 07:13:58 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id 7FD808B08B; Tue, 29 Jul 2014 21:13:52 +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 UZNmWig1EfUK; Tue, 29 Jul 2014 21:13:51 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by fraxinus.osuosl.org (Postfix) with ESMTP id 074D68B621; Tue, 29 Jul 2014 21:13:44 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from silver.osuosl.org (silver.osuosl.org [140.211.166.136]) by ash.osuosl.org (Postfix) with ESMTP id C78411BFA15 for ; Tue, 29 Jul 2014 21:13:42 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id C0AA0329F0 for ; Tue, 29 Jul 2014 21:13:42 +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 4n+MXrQLOu0Z for ; Tue, 29 Jul 2014 21:13:39 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail-wg0-f44.google.com (mail-wg0-f44.google.com [74.125.82.44]) by silver.osuosl.org (Postfix) with ESMTPS id 5FF8532E94 for ; Tue, 29 Jul 2014 21:13:04 +0000 (UTC) Received: by mail-wg0-f44.google.com with SMTP id m15so242788wgh.27 for ; Tue, 29 Jul 2014 14:13:02 -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=SacSh9+CtFglShU6D7+TteNZYcOYsFBQak8B6+f7AJw=; b=cbBBv4BVLs7Oc3HmZsAsoXOTJ1TLrrdGVowRjg+nZS0MuHPg7aBwcl9TYKVNDmJ4BS fGf1+gR6MxLXIBNrNHBQylKCK+q2V9LR6CtbK4cvwQRyHkTqzIoq5ExRWP/r1VSN6x1b EH+T4M9Zr5A+Poh3kqgeH/McxCthhMVS+C2iQaBJ9QgyecPMt7Pqtmd7wd6b/0xu/7wo DxQZQuw1+x8fgMjCR29tgqwRw4tnTrfUIsn+Y9g0djxiVI/OkwkhB/CdkjQAfZhO9NH7 3/Zch4TzhkIakXXuoSfFw9Vo4FQXO0Z4esrEKl6rAcE7w3ikw4lqMaaWJtlKcVRQwSz+ 9SRQ== X-Received: by 10.194.63.228 with SMTP id j4mr7376250wjs.7.1406668382916; Tue, 29 Jul 2014 14:13:02 -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.13.01 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 29 Jul 2014 14:13:02 -0700 (PDT) MIME-Version: 1.0 X-Mercurial-Node: 9d23ec1bdf4c0e6f59b30af705da8435cf634928 Message-Id: <9d23ec1bdf4c0e6f59b3.1406668364@localhost> In-Reply-To: References: User-Agent: Mercurial-patchbomb/2.7.2 Date: Tue, 29 Jul 2014 23:12:44 +0200 From: Thomas De Schampheleire To: buildroot@buildroot.org Cc: thomas.petazzoni@free-electrons.com, "Yann E. MORIN" Subject: [Buildroot] [PATCH 17 of 20] pkg-generic: add check on deprecated variable FOO_BUILD_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_BUILD_OPT, and suggests to use FOO_BUILD_OPTS instead. Signed-off-by: Thomas De Schampheleire --- package/pkg-generic.mk | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff -r 2ca4e88d3634 -r 9d23ec1bdf4c package/pkg-generic.mk --- a/package/pkg-generic.mk Tue Jul 29 22:11:15 2014 +0200 +++ b/package/pkg-generic.mk Tue Jul 29 22:11:38 2014 +0200 @@ -725,6 +725,7 @@ $(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)) +$(eval $(call check-deprecated-variable,$(2)_BUILD_OPT,$(2)_BUILD_OPTS)) TARGETS += $(1)