From 3d93589c8f318654b3cf572930541085f68adbf0 Mon Sep 17 00:00:00 2001 From: Samuel Martin Date: Sat, 1 Mar 2014 20:59:08 +0100 Subject: [PATCH] bustle: use TARGET_MAKE_ENV instead of setting PATH in the make environment TARGET_MAKE_ENV already contains the PATH definition among other useful variables. Signed-off-by: Samuel Martin Acked-by: Thomas Petazzoni Signed-off-by: Thomas Petazzoni --- package/bustle/bustle.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/bustle/bustle.mk b/package/bustle/bustle.mk index 2330c08ac..7bc3e97bc 100644 --- a/package/bustle/bustle.mk +++ b/package/bustle/bustle.mk @@ -11,7 +11,7 @@ BUSTLE_LICENSE_FILES = LICENSE BUSTLE_DEPENDENCIES = libglib2 libpcap host-pkgconf define BUSTLE_BUILD_CMDS - PATH=$(TARGET_PATH) $(MAKE) $(TARGET_CONFIGURE_OPTS) \ + $(TARGET_MAKE_ENV) $(MAKE) $(TARGET_CONFIGURE_OPTS) \ PCAP_FLAGS='-lpcap' -C $(@D) dist/build/bustle-pcap endef