mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-09-10 08:14:09 -09:00
package/kmsxx: fix meson build directory for extra tools
Commit4e95062f8("package/pkg-meson: use buildroot-build for build directory") changed the build directory for meson packages to 'buildroot-build'. Thus accessing the build directory for installing the extra utils needs to be adopted to this directory. Otherwise the install will fail when BR2_PACKAGE_KMSXX_INSTALL_TESTS is enabled. Signed-off-by: Heiko Thiery <heiko.thiery@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com> (cherry picked from commit55979f081d) Signed-off-by: Thomas Perale <thomas.perale@mind.be>
This commit is contained in:
committed by
Thomas Perale
parent
ac9e479c07
commit
dd9c9b4058
@@ -30,7 +30,7 @@ KMSXX_EXTRA_UTILS += kmstouch
|
||||
endif
|
||||
define KMSXX_INSTALL_EXTRA_UTILS
|
||||
$(foreach t,$(KMSXX_EXTRA_UTILS),\
|
||||
$(INSTALL) -D -m 0755 $(@D)/build/utils/$(t) \
|
||||
$(INSTALL) -D -m 0755 $(@D)/buildroot-build/utils/$(t) \
|
||||
$(TARGET_DIR)/usr/bin/$(t)
|
||||
)
|
||||
endef
|
||||
|
||||
Reference in New Issue
Block a user