From: Thomas Petazzoni Date: Tue, 22 Oct 2019 08:49:23 +0000 (+0200) Subject: package/libselinux: install Python modules to target X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b8e4cc9dc4d67f384d11d4aaa321dac7ba73dba8;p=buildroot.git package/libselinux: install Python modules to target While LIBSELINUX_INSTALL_STAGING_CMDS uses $(LIBSELINUX_MAKE_INSTALL_TARGETS), LIBSELINUX_INSTALL_TARGET_CMDS does not use it. Due to this, the Python module is only installed to $(STAGING_DIR) and not to $(TARGET_DIR). Fix this by using $(LIBSELINUX_MAKE_INSTALL_TARGETS) in LIBSELINUX_INSTALL_TARGET_CMDS. Signed-off-by: Thomas Petazzoni Cc: James Hilliard Cc: Matt Weber Cc: Adam Duskett Signed-off-by: Arnout Vandecappelle (Essensium/Mind) --- diff --git a/package/libselinux/libselinux.mk b/package/libselinux/libselinux.mk index c707c8a25e..c68721e3a7 100644 --- a/package/libselinux/libselinux.mk +++ b/package/libselinux/libselinux.mk @@ -72,7 +72,8 @@ endef define LIBSELINUX_INSTALL_TARGET_CMDS $(TARGET_MAKE_ENV) $(MAKE) -C $(@D) \ - $(LIBSELINUX_MAKE_OPTS) DESTDIR=$(TARGET_DIR) install + $(LIBSELINUX_MAKE_OPTS) DESTDIR=$(TARGET_DIR) \ + $(LIBSELINUX_MAKE_INSTALL_TARGETS) # 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 \