Fix the 'file not found' in the load target, someone

forgot to add the '.ko' to the end of the module filename.
This commit is contained in:
Coleman Kane 2000-06-22 02:07:18 +00:00
parent cbe8602290
commit 48bd8a660c
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=61928

View File

@ -241,7 +241,7 @@ distribute: _SUBDIR
.if !target(load)
load: ${PROG}
${KMODLOAD} -v ./${KMOD}
${KMODLOAD} -v ./${KMOD}.ko
.endif
.if !target(unload)