From patchwork Tue Oct 20 13:52:54 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Vicente Olivert Riera X-Patchwork-Id: 532980 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from hemlock.osuosl.org (smtp2.osuosl.org [140.211.166.133]) by ozlabs.org (Postfix) with ESMTP id DA32E1402B8 for ; Wed, 21 Oct 2015 00:53:20 +1100 (AEDT) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 2CB7A88CCD; Tue, 20 Oct 2015 13:53:20 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from hemlock.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 444PXj5d48-M; Tue, 20 Oct 2015 13:53:17 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by hemlock.osuosl.org (Postfix) with ESMTP id 05CCF88D85; Tue, 20 Oct 2015 13:53:16 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from hemlock.osuosl.org (smtp2.osuosl.org [140.211.166.133]) by ash.osuosl.org (Postfix) with ESMTP id 24BA31C0786 for ; Tue, 20 Oct 2015 13:53:15 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 2076688D76 for ; Tue, 20 Oct 2015 13:53:15 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from hemlock.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Qqe20Fgx1ROW for ; Tue, 20 Oct 2015 13:53:10 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mailapp01.imgtec.com (mailapp01.imgtec.com [195.59.15.196]) by hemlock.osuosl.org (Postfix) with ESMTP id BBE3C87FA5 for ; Tue, 20 Oct 2015 13:53:10 +0000 (UTC) Received: from KLMAIL01.kl.imgtec.org (unknown [192.168.5.35]) by Websense Email Security Gateway with ESMTPS id 72783D6AF947F for ; Tue, 20 Oct 2015 14:53:07 +0100 (IST) Received: from LEMAIL01.le.imgtec.org (192.168.152.62) by KLMAIL01.kl.imgtec.org (192.168.5.35) with Microsoft SMTP Server (TLS) id 14.3.195.1; Tue, 20 Oct 2015 14:53:09 +0100 Received: from localhost.localdomain (192.168.154.63) by LEMAIL01.le.imgtec.org (192.168.152.62) with Microsoft SMTP Server (TLS) id 14.3.210.2; Tue, 20 Oct 2015 14:53:08 +0100 From: Vicente Olivert Riera To: Date: Tue, 20 Oct 2015 14:52:54 +0100 Message-ID: <1445349175-41234-2-git-send-email-Vincent.Riera@imgtec.com> X-Mailer: git-send-email 1.7.1 In-Reply-To: <1445349175-41234-1-git-send-email-Vincent.Riera@imgtec.com> References: <1445349175-41234-1-git-send-email-Vincent.Riera@imgtec.com> MIME-Version: 1.0 X-Originating-IP: [192.168.154.63] Subject: [Buildroot] [PATCH 2/3] noip: add $(TARGET_MAKE_ENV) before $(MAKE) 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: , Errors-To: buildroot-bounces@busybox.net Sender: "buildroot" Signed-off-by: Vicente Olivert Riera --- package/noip/noip.mk | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package/noip/noip.mk b/package/noip/noip.mk index 98edfca..a61d141 100644 --- a/package/noip/noip.mk +++ b/package/noip/noip.mk @@ -12,8 +12,8 @@ NOIP_LICENSE_FILES = COPYING define NOIP_BUILD_CMDS $(SED) "/^#define CONFIG_FILENAME/ s/PREFIX//" $(@D)/noip2.c - $(MAKE) -C $(@D) CC="$(TARGET_CC)" CFLAGS="$(TARGET_CFLAGS)" \ - PREFIX=/usr CONFDIR=/etc + $(TARGET_MAKE_ENV) $(MAKE) -C $(@D) CC="$(TARGET_CC)" \ + CFLAGS="$(TARGET_CFLAGS)" PREFIX=/usr CONFDIR=/etc endef define NOIP_INSTALL_TARGET_CMDS