From patchwork Thu Dec 20 22:08:47 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Yann E. MORIN" X-Patchwork-Id: 1901461 Return-Path: X-Original-To: patchwork-linux-kbuild@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork2.kernel.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by patchwork2.kernel.org (Postfix) with ESMTP id 0E867DF23A for ; Thu, 20 Dec 2012 22:08:59 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751953Ab2LTWI6 (ORCPT ); Thu, 20 Dec 2012 17:08:58 -0500 Received: from mail-we0-f176.google.com ([74.125.82.176]:43895 "EHLO mail-we0-f176.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751745Ab2LTWI6 (ORCPT ); Thu, 20 Dec 2012 17:08:58 -0500 Received: by mail-we0-f176.google.com with SMTP id r5so1867343wey.35 for ; Thu, 20 Dec 2012 14:08:57 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:sender:from:to:cc:subject:date:message-id:x-mailer :in-reply-to:references:in-reply-to:references; bh=htzoq4SSGytkYCK6DgGf9143IWNC4QTA6Uc8nXoKqVQ=; b=gOjn+/vGh0w2j/VB/3skDjK0cOVrzOt+W2xiibvbk6XI0TB4slzQ0LoAovVB7jKNPG +8qqpw6UbbF9G5Cvb9AJt0PODCbhDATgPUkLArselSK6semFqllsTabORIsoI5kwG4y1 8nHEKC0VYb6RgBHbRGX5Jhtlyz1nVu1EXSULPOWcnJX47CeI0OxvIeV6Nv6J74XIOCtE 27TWu8iJv+UEA5SYxF5rXPZyVz9t3SDrqTci6A0OLf7vnfisyowwtHw/9M3AwS67g5Ec OxPvjSxwb7KCoAp1ckG90DuHNXwej42oXRkvFY1MYuFr5g6MMs5ZxO4CKmtfFGgw2bTj i8SQ== X-Received: by 10.194.179.34 with SMTP id dd2mr20223139wjc.1.1356041337120; Thu, 20 Dec 2012 14:08:57 -0800 (PST) Received: from localhost.localdomain (ARennes-256-1-46-67.w90-32.abo.wanadoo.fr. [90.32.29.67]) by mx.google.com with ESMTPS id w5sm27165356wif.11.2012.12.20.14.08.55 (version=TLSv1/SSLv3 cipher=OTHER); Thu, 20 Dec 2012 14:08:56 -0800 (PST) From: "Yann E. MORIN" To: linux-kbuild@vger.kernel.org Cc: Michal Marek , "Yann E. MORIN" Subject: [PATCH 2/2] kconfig: ensure we use proper CONFIG_ prefix Date: Thu, 20 Dec 2012 23:08:47 +0100 Message-Id: <6a9a981154fd1f3e05f2098eb7bbe5d658cc0e40.1356041188.git.yann.morin.1998@free.fr> X-Mailer: git-send-email 1.7.2.5 In-Reply-To: References: In-Reply-To: References: Sender: linux-kbuild-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kbuild@vger.kernel.org Now that we get the CONFIG_ prefix from the environment, we must ensure we use the proper prefix in case the user has it set in the environment. Simply unexport the CONFIG_ environment variable to fallback to our hard-coded default. Signed-off-by: "Yann E. MORIN" --- Makefile | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/Makefile b/Makefile index 5be2ee8..fe20913a 100644 --- a/Makefile +++ b/Makefile @@ -233,6 +233,7 @@ hdr-arch := $(SRCARCH) KCONFIG_CONFIG ?= .config export KCONFIG_CONFIG +unexport CONFIG_ # SHELL used by kbuild CONFIG_SHELL := $(shell if [ -x "$$BASH" ]; then echo $$BASH; \