]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/boot/efi/no-undefined-symbols.sh
meson: also indent scripts with 8 spaces
[thirdparty/systemd.git] / src / boot / efi / no-undefined-symbols.sh
CommitLineData
86b3ca7a 1#!/bin/sh -eu
b710072d
ZJS
2
3if nm -D -u "$1" | grep ' U '; then
b884196c
ZJS
4 echo "Undefined symbols detected!"
5 exit 1
b710072d 6fi