From 7e8e3e8209edad816e149612d419a7ec14241676 Mon Sep 17 00:00:00 2001 From: Peter Korsgaard Date: Sat, 2 May 2015 13:14:29 +0200 Subject: [PATCH] imx-usb-loader: cleanup HOST_CONFIGURE_OPTS is a superset of HOST_MAKE_ENV, so there is no need to pass them both. Also use HOST_CONFIGURE_OPTS for the install step for consistency, and finally, add host-pkgconf to _DEPENDENCIES as it is explicitly used (currently gets pulled in by host-libusb though). Signed-off-by: Peter Korsgaard --- package/imx-usb-loader/imx-usb-loader.mk | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package/imx-usb-loader/imx-usb-loader.mk b/package/imx-usb-loader/imx-usb-loader.mk index fdabb6af30..280ffc0401 100644 --- a/package/imx-usb-loader/imx-usb-loader.mk +++ b/package/imx-usb-loader/imx-usb-loader.mk @@ -8,14 +8,14 @@ IMX_USB_LOADER_VERSION = f96aee286ea17c832b7ec922dd76842deb5ce299 IMX_USB_LOADER_SITE = $(call github,boundarydevices,imx_usb_loader,$(IMX_USB_LOADER_VERSION)) IMX_USB_LOADER_LICENSE = LGPLv2.1+ IMX_USB_LOADER_LICENSE_FILES = COPYING -IMX_USB_LOADER_DEPENDENCIES = host-libusb +IMX_USB_LOADER_DEPENDENCIES = host-libusb host-pkgconf define HOST_IMX_USB_LOADER_BUILD_CMDS - $(HOST_MAKE_ENV) $(HOST_CONFIGURE_OPTS) $(MAKE) -C $(@D) + $(HOST_CONFIGURE_OPTS) $(MAKE) -C $(@D) endef define HOST_IMX_USB_LOADER_INSTALL_CMDS - $(HOST_MAKE_ENV) $(MAKE) -C $(@D) \ + $(HOST_CONFIGURE_OPTS) $(MAKE) -C $(@D) \ DESTDIR=$(HOST_DIR) sysconfdir=/etc install endef