From patchwork Sat Dec 6 09:56:26 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thomas Petazzoni X-Patchwork-Id: 418355 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 342591400DD for ; Sat, 6 Dec 2014 20:56:45 +1100 (AEDT) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 79E9392B65; Sat, 6 Dec 2014 09:56:44 +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 lfhfRgS726HA; Sat, 6 Dec 2014 09:56:37 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by whitealder.osuosl.org (Postfix) with ESMTP id 49DF492AC3; Sat, 6 Dec 2014 09:56:36 +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 BBAF21CEC9E for ; Sat, 6 Dec 2014 09:56:33 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id B6C6432151 for ; Sat, 6 Dec 2014 09:56:33 +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 eYrWyCYwdRZS for ; Sat, 6 Dec 2014 09:56:32 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail.free-electrons.com (down.free-electrons.com [37.187.137.238]) by silver.osuosl.org (Postfix) with ESMTP id BE8413229A for ; Sat, 6 Dec 2014 09:56:32 +0000 (UTC) Received: by mail.free-electrons.com (Postfix, from userid 106) id 4AFDE716; Sat, 6 Dec 2014 10:56:34 +0100 (CET) Received: from localhost (AToulouse-657-1-1027-99.w90-45.abo.wanadoo.fr [90.45.197.99]) by mail.free-electrons.com (Postfix) with ESMTPSA id 0DAA52F3; Sat, 6 Dec 2014 10:56:34 +0100 (CET) From: Thomas Petazzoni To: buildroot@uclibc.org Date: Sat, 6 Dec 2014 10:56:26 +0100 Message-Id: <1417859787-31970-2-git-send-email-thomas.petazzoni@free-electrons.com> X-Mailer: git-send-email 2.1.0 In-Reply-To: <1417859787-31970-1-git-send-email-thomas.petazzoni@free-electrons.com> References: <1417859787-31970-1-git-send-email-thomas.petazzoni@free-electrons.com> Cc: Thomas Petazzoni Subject: [Buildroot] [PATCH 2/3] fconfig: remove redundant CFLAGS/LDFLAGS X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: buildroot-bounces@busybox.net Sender: "buildroot" CFLAGS and LDFLAGS are already passed as part of $(TARGET_CONFIGURE_OPTS). Signed-off-by: Thomas Petazzoni Acked-by: "Yann E. MORIN" --- package/fconfig/fconfig.mk | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/package/fconfig/fconfig.mk b/package/fconfig/fconfig.mk index 7f7faad..509fc2c 100644 --- a/package/fconfig/fconfig.mk +++ b/package/fconfig/fconfig.mk @@ -12,9 +12,7 @@ FCONFIG_LICENSE = GPLv2+ FCONFIG_LICENSE_FILES = fconfig.c define FCONFIG_BUILD_CMDS - $(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D) \ - CFLAGS="$(TARGET_CFLAGS)" \ - LDFLAGS="$(TARGET_LDFLAGS)" + $(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D) endef define FCONFIG_INSTALL_TARGET_CMDS