diff options
author | bz <bz@FreeBSD.org> | 2008-11-29 08:45:20 +0000 |
---|---|---|
committer | bz <bz@FreeBSD.org> | 2008-11-29 08:45:20 +0000 |
commit | 1cd6f1957c4b126a988424cbe82aa05869de2ee2 (patch) | |
tree | 224f50d28d92677f29488b780e8084af17cdf659 /sys/modules/powermac_nvram | |
parent | 136e1c3d6aa8402c7ad99d1dce8f3f079be201c3 (diff) | |
download | FreeBSD-src-1cd6f1957c4b126a988424cbe82aa05869de2ee2.zip FreeBSD-src-1cd6f1957c4b126a988424cbe82aa05869de2ee2.tar.gz |
make 'make universe' not complain about
In file included from /src/sys/modules/powermac_nvram/../../dev/powermac_nvram/powermac_nvram.c:38:
@/dev/ofw/ofw_bus.h:36:24: error: ofw_bus_if.h: No such file or directory
I am not sure for how long this had not worked and if it was just the
latest vimage commit that had revealed this or if nobody had built
universe successfully in a while. Btw, the tinderbox did not complain
either so that is probably the reason noone had noticed.
Diffstat (limited to 'sys/modules/powermac_nvram')
-rw-r--r-- | sys/modules/powermac_nvram/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/modules/powermac_nvram/Makefile b/sys/modules/powermac_nvram/Makefile index e56f720..95a38c8 100644 --- a/sys/modules/powermac_nvram/Makefile +++ b/sys/modules/powermac_nvram/Makefile @@ -5,5 +5,6 @@ KMOD= powermac_nvram SRCS= powermac_nvram.c powermac_nvramvar.h SRCS+= bus_if.h device_if.h +SRCS+= ofw_bus_if.h .include <bsd.kmod.mk> |