From 33e6f2e395fda8aff010ff77864da2daeaa51112 Mon Sep 17 00:00:00 2001 From: Peter Korsgaard Date: Wed, 28 May 2025 21:50:42 +0200 Subject: [PATCH] package/libcamera: correct build directory for IPA stripping Commit 4e95062f8 ("package/pkg-meson: use buildroot-build for build directory") changed the build directory for meson packages to 'buildroot-build', so update the find invocation to match. Signed-off-by: Peter Korsgaard (cherry picked from commit c9355a3869e3d735df90fc1c012108fdca72ac78) Signed-off-by: Thomas Perale --- package/libcamera/libcamera.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/libcamera/libcamera.mk b/package/libcamera/libcamera.mk index b5b17a5c94..2712687913 100644 --- a/package/libcamera/libcamera.mk +++ b/package/libcamera/libcamera.mk @@ -131,7 +131,7 @@ endif # otherwise the signature won't match the shlib on the rootfs. Since meson # install target is signing the shlibs, we need to strip them before. LIBCAMERA_STRIP_FIND_CMD = \ - find $(@D)/build/src/ipa \ + find $(@D)/buildroot-build/src/ipa \ $(if $(call qstrip,$(BR2_STRIP_EXCLUDE_FILES)), \ -not \( $(call findfileclauses,$(call qstrip,$(BR2_STRIP_EXCLUDE_FILES))) \) ) \ -type f -name 'ipa_*.so' -print0