summaryrefslogtreecommitdiff
path: root/package/bustle
diff options
context:
space:
mode:
authorSamuel Martin <s.martin49@gmail.com>2014-03-01 20:59:08 +0100
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>2014-03-01 23:46:15 +0100
commit3d93589c8f318654b3cf572930541085f68adbf0 (patch)
tree9d80c6abb5fe30e9a4eec851796e0d7c1907998c /package/bustle
parente025e49100565617715e0de986ba670532098b14 (diff)
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 <s.martin49@gmail.com> Acked-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/bustle')
-rw-r--r--package/bustle/bustle.mk2
1 files changed, 1 insertions, 1 deletions
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