summaryrefslogtreecommitdiffstats
path: root/src/boot/efi/no-undefined-symbols.sh
blob: 84cbd5b42bbe32a2b4c15815aff4013c72015c49 (plain)
1
2
3
4
5
6
7
#!/bin/sh
set -eu

if nm -D -u "$1" | grep ' U '; then
    echo "Undefined symbols detected!"
    exit 1
fi