All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [git commit] ed: use $(TARGET_MAKE_ENV) when calling $(MAKE)
@ 2016-10-22 13:19 Thomas Petazzoni
  0 siblings, 0 replies; only message in thread
From: Thomas Petazzoni @ 2016-10-22 13:19 UTC (permalink / raw)
  To: buildroot

commit: https://git.buildroot.net/buildroot/commit/?id=ca3ae3bd35cf08f45b4ac06c6a09bcae35cbaa09
branch: https://git.buildroot.net/buildroot/commit/?id=refs/heads/master

Signed-off-by: Gustavo Zacarias <gustavo.zacarias@free-electrons.com>
Reviewed-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
---
 package/ed/ed.mk | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/package/ed/ed.mk b/package/ed/ed.mk
index f3bcb74..36f2f2e 100644
--- a/package/ed/ed.mk
+++ b/package/ed/ed.mk
@@ -14,18 +14,18 @@ ED_LICENSE_FILES = COPYING
 
 define ED_CONFIGURE_CMDS
 	(cd $(@D); \
-		./configure \
+		$(TARGET_MAKE_ENV) ./configure \
 		--prefix=/usr \
 		$(TARGET_CONFIGURE_OPTS) \
 	)
 endef
 
 define ED_BUILD_CMDS
-	$(MAKE)	-C $(@D)
+	$(TARGET_MAKE_ENV) $(MAKE) -C $(@D)
 endef
 
 define ED_INSTALL_TARGET_CMDS
-	$(MAKE) -C $(@D) DESTDIR="$(TARGET_DIR)" install
+	$(TARGET_MAKE_ENV) $(MAKE) -C $(@D) DESTDIR="$(TARGET_DIR)" install
 endef
 
 $(eval $(generic-package))

^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2016-10-22 13:19 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-10-22 13:19 [Buildroot] [git commit] ed: use $(TARGET_MAKE_ENV) when calling $(MAKE) Thomas Petazzoni

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.