From: Samuel Martin Date: Sat, 1 Mar 2014 19:59:08 +0000 (+0100) Subject: bustle: use TARGET_MAKE_ENV instead of setting PATH in the make environment X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=3d93589c8f318654b3cf572930541085f68adbf0;p=buildroot.git 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 --- diff --git a/package/bustle/bustle.mk b/package/bustle/bustle.mk index 2330c08ac9..7bc3e97bcf 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