diff options
author | ru <ru@FreeBSD.org> | 2002-05-14 07:49:12 +0000 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2002-05-14 07:49:12 +0000 |
commit | 9cf99ff7cfcc12a629fe8fa33d2d0bec2a5a0d29 (patch) | |
tree | ac52ef7b7f52880a1878d71a829d86ff68b70750 /sys/modules | |
parent | 93d6d2e8c29b8f054bd4b71cdeb582a7dc283d8b (diff) | |
download | FreeBSD-src-9cf99ff7cfcc12a629fe8fa33d2d0bec2a5a0d29.zip FreeBSD-src-9cf99ff7cfcc12a629fe8fa33d2d0bec2a5a0d29.tar.gz |
Check that kldxref(8) exists before running it.
Diffstat (limited to 'sys/modules')
-rw-r--r-- | sys/modules/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/modules/Makefile b/sys/modules/Makefile index 45f1225..6378490 100644 --- a/sys/modules/Makefile +++ b/sys/modules/Makefile @@ -216,7 +216,10 @@ SUBDIR=${MODULES_OVERRIDE} .if !defined(NO_XREF) .MAKEFLAGS:= ${.MAKEFLAGS} -DNO_XREF afterinstall: - -kldxref ${DESTDIR}${KMODDIR} + @if type kldxref >/dev/null 2>&1; then \ + ${ECHO} kldxref ${DESTDIR}${KMODDIR}; \ + kldxref ${DESTDIR}${KMODDIR}; \ + fi .endif .include <bsd.subdir.mk> |