From 48bd8a660ce7cfcfdffe8d67d87340f5957ee23a Mon Sep 17 00:00:00 2001 From: Coleman Kane Date: Thu, 22 Jun 2000 02:07:18 +0000 Subject: [PATCH] Fix the 'file not found' in the load target, someone forgot to add the '.ko' to the end of the module filename. --- sys/conf/kmod.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/conf/kmod.mk b/sys/conf/kmod.mk index 589590f4f4a3..803593b24f9a 100644 --- a/sys/conf/kmod.mk +++ b/sys/conf/kmod.mk @@ -241,7 +241,7 @@ distribute: _SUBDIR .if !target(load) load: ${PROG} - ${KMODLOAD} -v ./${KMOD} + ${KMODLOAD} -v ./${KMOD}.ko .endif .if !target(unload)