Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 18642a57 authored by H. Peter Anvin's avatar H. Peter Anvin
Browse files

x86, vdso: Don't quote $nm in the script for checking vdso references



Don't quote $nm in the script for checking the vdso for external
references.  Doing so breaks multiword constructs, like using
CROSS_COMPILE='ccache '.

Reported-by: default avatarStephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: default avatarH. Peter Anvin <hpa@zytor.com>
LKML-Reference: <20100728134252.2e4c27cf.sfr@canb.auug.org.au>
parent 05d0b088
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
#!/bin/sh
nm="$1"
file="$2"
"$nm" "$file" | grep '^ *U' > /dev/null 2>&1
$nm "$file" | grep '^ *U' > /dev/null 2>&1
if [ $? -eq 1 ]; then
    exit 0
else