diff options
Diffstat (limited to 'ANDROID_3.4.5/arch/x86/um/vdso/checkundef.sh')
-rw-r--r-- | ANDROID_3.4.5/arch/x86/um/vdso/checkundef.sh | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/ANDROID_3.4.5/arch/x86/um/vdso/checkundef.sh b/ANDROID_3.4.5/arch/x86/um/vdso/checkundef.sh deleted file mode 100644 index 7ee90a9b..00000000 --- a/ANDROID_3.4.5/arch/x86/um/vdso/checkundef.sh +++ /dev/null @@ -1,10 +0,0 @@ -#!/bin/sh -nm="$1" -file="$2" -$nm "$file" | grep '^ *U' > /dev/null 2>&1 -if [ $? -eq 1 ]; then - exit 0 -else - echo "$file: undefined symbols found" >&2 - exit 1 -fi |