From 7a07b896c5c42c73ddc14baf71778b10f1d4e84f Mon Sep 17 00:00:00 2001 From: Ian Dowse Date: Tue, 24 Jun 2003 13:35:46 +0000 Subject: [PATCH] The ext2fs module needs a machine-dependent bitops.h file, so only build it on the i386 and alpha architectures, where this has been set up (there is also a sparc64-bitops.h in sys/gnu/ext2fs, but it appears to be broken and it is not linked up). This should unbreak the sparc64 LINT build. --- sys/modules/Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sys/modules/Makefile b/sys/modules/Makefile index e3805d6c417..cd8e09eabf3 100644 --- a/sys/modules/Makefile +++ b/sys/modules/Makefile @@ -147,9 +147,11 @@ SUBDIR= accf_data \ wlan \ xl +.if ${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "alpha" .if defined(WANT_EXT2FS_MODULE) || defined(ALL_MODULES) SUBDIR+=ext2fs .endif +.endif .if !defined(NO_IPFILTER) || defined(ALL_MODULES) SUBDIR+=ipfilter