Stand: Silence undefined symbols check command

No need to print this...

Reviewed by: imp
Pull Request: https://github.com/freebsd/freebsd-src/pull/786
This commit is contained in:
VexedUXR 2023-07-01 11:16:44 -06:00 committed by Warner Losh
parent d3eb9d3db3
commit 3bf9e84f08
2 changed files with 2 additions and 2 deletions

View file

@ -93,7 +93,7 @@ DPADD+= ${LDSCRIPT}
CLEANFILES+= ${BOOT1}.efi
${BOOT1}.efi: ${PROG}
if ${NM} ${.ALLSRC} | grep ' U '; then \
@if ${NM} ${.ALLSRC} | grep ' U '; then \
echo "Undefined symbols in ${.ALLSRC}"; \
exit 1; \
fi

View file

@ -110,7 +110,7 @@ LDFLAGS+= -Wl,--no-dynamic-linker
CLEANFILES+= ${LOADER}.efi
${LOADER}.efi: ${PROG}
if ${NM} ${.ALLSRC} | grep ' U '; then \
@if ${NM} ${.ALLSRC} | grep ' U '; then \
echo "Undefined symbols in ${.ALLSRC}"; \
exit 1; \
fi