You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
169 B
11 lines
169 B
14 years ago
|
#!/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
|