aboutsummaryrefslogtreecommitdiff
path: root/arch/x86/vdso/checkundef.sh
diff options
context:
space:
mode:
Diffstat (limited to 'arch/x86/vdso/checkundef.sh')
-rwxr-xr-xarch/x86/vdso/checkundef.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/vdso/checkundef.sh b/arch/x86/vdso/checkundef.sh
index 490be1c38f9..7ee90a9b549 100755
--- a/arch/x86/vdso/checkundef.sh
+++ b/arch/x86/vdso/checkundef.sh
@@ -1,7 +1,7 @@
#!/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