diff options
| author | Ed Maste <emaste@FreeBSD.org> | 2022-04-01 13:58:47 +0000 |
|---|---|---|
| committer | Ed Maste <emaste@FreeBSD.org> | 2022-04-11 13:12:53 +0000 |
| commit | 7150099b3c8484096ce891f30f2c6aca29cfdac7 (patch) | |
| tree | 6b90b9ac97f103b7125c980aeb7815b4b01cb1c0 | |
| parent | b572edb09c4da2949b20a62e98cbf2e6df88e7e1 (diff) | |
| -rw-r--r-- | Makefile.inc1 | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Makefile.inc1 b/Makefile.inc1 index 327680cad5ff..b8431b5abe09 100644 --- a/Makefile.inc1 +++ b/Makefile.inc1 @@ -1383,6 +1383,10 @@ distributeworld installworld stageworld: _installcheck_world .PHONY if [ -z "${CROSSBUILD_HOST}" ] ; then \ libs=$$(ldd -f "%o %p\n" -f "%o %p\n" $$progs 2>/dev/null | sort -u | \ while read line; do \ + case $$line in \ + "["*"]") \ + continue;; \ + esac; \ set -- $$line; \ if [ "$$2 $$3" != "not found" ]; then \ echo $$2; \ |
