summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGustavo Zacarias <gustavo.zacarias@free-electrons.com>2016-10-28 10:18:22 -0300
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>2016-10-29 15:52:38 +0200
commitdba1ebe551c32b101cdc31402b2a580101765b8b (patch)
tree53ea9e733a0cfb7308f3db1153614e5deb84adc9
parentf3f9a860c09728edbc7a6cb5f03841092535ff59 (diff)
downloadbuildroot-dba1ebe551c32b101cdc31402b2a580101765b8b.tar.gz
buildroot-dba1ebe551c32b101cdc31402b2a580101765b8b.zip
libselinux: use $(TARGET_MAKE_ENV) when calling $(MAKE)
Signed-off-by: Gustavo Zacarias <gustavo.zacarias@free-electrons.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r--package/libselinux/libselinux.mk9
1 files changed, 6 insertions, 3 deletions
diff --git a/package/libselinux/libselinux.mk b/package/libselinux/libselinux.mk
index 6f9417321a..29ed0efacf 100644
--- a/package/libselinux/libselinux.mk
+++ b/package/libselinux/libselinux.mk
@@ -23,15 +23,18 @@ LIBSELINUX_MAKE_OPTS = \
define LIBSELINUX_BUILD_CMDS
# DESTDIR is needed during the compile to compute library and
# header paths.
- $(MAKE) -C $(@D) $(LIBSELINUX_MAKE_OPTS) DESTDIR=$(STAGING_DIR) all
+ $(TARGET_MAKE_ENV) $(MAKE) -C $(@D) \
+ $(LIBSELINUX_MAKE_OPTS) DESTDIR=$(STAGING_DIR) all
endef
define LIBSELINUX_INSTALL_STAGING_CMDS
- $(MAKE) -C $(@D) $(LIBSELINUX_MAKE_OPTS) DESTDIR=$(STAGING_DIR) install
+ $(TARGET_MAKE_ENV) $(MAKE) -C $(@D) \
+ $(LIBSELINUX_MAKE_OPTS) DESTDIR=$(STAGING_DIR) install
endef
define LIBSELINUX_INSTALL_TARGET_CMDS
- $(MAKE) -C $(@D) $(LIBSELINUX_MAKE_OPTS) DESTDIR=$(TARGET_DIR) install
+ $(TARGET_MAKE_ENV) $(MAKE) -C $(@D) \
+ $(LIBSELINUX_MAKE_OPTS) DESTDIR=$(TARGET_DIR) install
# Create the selinuxfs mount point
if [ ! -d "$(TARGET_DIR)/selinux" ]; then mkdir $(TARGET_DIR)/selinux; fi
if ! grep -q "selinuxfs" $(TARGET_DIR)/etc/fstab; then \
OpenPOWER on IntegriCloud