We want to switch the interpreter from bash to sh, so we need to get rid
of the back ticks.
Signed-off-by: Elliott Mitchell <ehem+debian@m5p.com>
Acked-by: Hans van Kranenburg <hans@knorrie.org>
[Hans van Kranenburg]
Replaced explanation in the commit message.
mkdir -p "$t/$vd"
-for binary in `find $t/usr/{bin,sbin} -type f`; do
+find "$t"/usr/*bin -type f | while read binary; do
# filter for executables (ignore scripts)
file "$binary" | grep -q -eELF.\\+version.\\+interpreter || continue