Systemd/src/boot/efi/no-undefined-symbols.sh

8 lines
108 B
Bash
Raw Normal View History

2017-12-24 07:53:20 +01:00
#!/bin/sh
set -eu
if nm -D -u "$1" | grep ' U '; then
echo "Undefined symbols detected!"
exit 1
fi