From a58c1836ffef3593b67768a3d5df17186705b7e0 Mon Sep 17 00:00:00 2001 From: Makoto Matsushita Date: Thu, 15 Nov 2001 18:59:04 +0000 Subject: [PATCH] Add card_if.h to SRCS. src/sys/dev/an/if_an_pccard.c rev 1.10 change requires to include "card_if.h" but Makefile doesn't know about this file. Without this, kernel build will fail at this driver. --- sys/modules/an/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/modules/an/Makefile b/sys/modules/an/Makefile index 4c3f752147c..74fd203f88f 100644 --- a/sys/modules/an/Makefile +++ b/sys/modules/an/Makefile @@ -4,7 +4,7 @@ KMOD= if_an SRCS= if_an.c if_an_pccard.c if_an_pci.c if_an_isa.c -SRCS+= opt_inet.h device_if.h bus_if.h pci_if.h isa_if.h +SRCS+= opt_inet.h device_if.h bus_if.h pci_if.h isa_if.h card_if.h opt_inet.h: echo "#define INET 1" > opt_inet.h