From b7fddc06224f10e847dd4af8a259bbdee58e837b Mon Sep 17 00:00:00 2001 From: Alex Xu Date: Tue, 7 May 2019 08:43:45 -0400 Subject: [PATCH] support/scripts/check-bin-arch: ignore /usr/lib/grub /lib/grub is already ignored, so add /usr/lib/grub to support BR2_ROOTFS_MERGED_USR. Signed-off-by: Alex Xu Signed-off-by: Thomas Petazzoni --- support/scripts/check-bin-arch | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/support/scripts/check-bin-arch b/support/scripts/check-bin-arch index 66b8d89932..3449bd1aeb 100755 --- a/support/scripts/check-bin-arch +++ b/support/scripts/check-bin-arch @@ -21,9 +21,10 @@ declare -a IGNORES=( # are not for the target architecture "/usr/share" - # Skip files in /lib/grub, since it is possible to have it - # for a different architecture (e.g. i386 grub on x86_64). + # Skip files in {/usr,}/lib/grub, since it is possible to have + # it for a different architecture (e.g. i386 grub on x86_64). "/lib/grub" + "/usr/lib/grub" ) while getopts p:l:r:a:i: OPT ; do -- 2.30.2