From 7cbbb1afee4f4e4a5d580e97bcd962f9ca8de222 Mon Sep 17 00:00:00 2001 From: Jonathan Lemon Date: Mon, 12 Mar 2001 21:44:19 +0000 Subject: [PATCH] Adjust the fxp module to use the correct directory path, and add a dependency on miibus. --- sys/modules/fxp/Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/sys/modules/fxp/Makefile b/sys/modules/fxp/Makefile index cb2b4671eb6..20371f64694 100644 --- a/sys/modules/fxp/Makefile +++ b/sys/modules/fxp/Makefile @@ -1,8 +1,9 @@ # $FreeBSD$ -.PATH: ${.CURDIR}/../../pci +.PATH: ${.CURDIR}/../../dev/fxp KMOD= if_fxp -SRCS= if_fxp.c opt_bdg.h device_if.h bus_if.h pci_if.h +SRCS= if_fxp.c opt_bdg.h device_if.h bus_if.h pci_if.h miibus_if.h +KMODDEPS = miibus .include