mirror of
https://github.com/opnsense/src.git
synced 2026-04-22 23:02:02 -04:00
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:
parent
d3eb9d3db3
commit
3bf9e84f08
2 changed files with 2 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue