diff mbox

[v8,10/14] support/scripts/check-host-rpath: also check HOST_DIR/{bin, sbin}

Message ID 1460929111-15615-11-git-send-email-s.martin49@gmail.com
State Superseded
Headers show

Commit Message

Samuel Martin April 17, 2016, 9:38 p.m. UTC
At least syslinux is installing stuff in HOST_DIR/sbin.

Cc: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Samuel Martin <s.martin49@gmail.com>

---
changes v7->v8:
- none

changes v6->v7:
- new patch
---
 support/scripts/check-host-rpath | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Thomas Petazzoni April 18, 2016, 7:37 p.m. UTC | #1
Hello,

On Sun, 17 Apr 2016 23:38:27 +0200, Samuel Martin wrote:
> At least syslinux is installing stuff in HOST_DIR/sbin.
> 
> Cc: "Yann E. MORIN" <yann.morin.1998@free.fr>
> Signed-off-by: Samuel Martin <s.martin49@gmail.com>
> 
> ---
> changes v7->v8:
> - none
> 
> changes v6->v7:
> - new patch
> ---
>  support/scripts/check-host-rpath | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/support/scripts/check-host-rpath b/support/scripts/check-host-rpath
> index 3df70bd..022f01b 100755
> --- a/support/scripts/check-host-rpath
> +++ b/support/scripts/check-host-rpath
> @@ -45,7 +45,7 @@ main() {
>                  "${pkg}"
>          fi
>          printf "***   %s\n" "${file}"
> -    done < <(find "${hostdir}"/usr/{bin,sbin} -type f -print 2>/dev/null |
> +    done < <(find "${hostdir}"/{,usr/}{bin,sbin} -type f -print 2>/dev/null |
>                    readelf.filter_elf_executable)

Please put this patch as PATCH 01 in your series, so that we can apply
it right now as a preparation fix. This way, you reduce the size of
your patch series, and things move forward.

Thanks!

Thomas
diff mbox

Patch

diff --git a/support/scripts/check-host-rpath b/support/scripts/check-host-rpath
index 3df70bd..022f01b 100755
--- a/support/scripts/check-host-rpath
+++ b/support/scripts/check-host-rpath
@@ -45,7 +45,7 @@  main() {
                 "${pkg}"
         fi
         printf "***   %s\n" "${file}"
-    done < <(find "${hostdir}"/usr/{bin,sbin} -type f -print 2>/dev/null |
+    done < <(find "${hostdir}"/{,usr/}{bin,sbin} -type f -print 2>/dev/null |
                   readelf.filter_elf_executable)
 
     return ${ret}