I've recently encountered problems on my laptop
running some other version of RedHat than the
usual build servers. Try this patch to fs/xfs/Makefile.
Basically, it seems that the tabs are causing problems.
In retrospect, I ran into similar problems in MIPS build;
Chait reported it too on IA64 builds ... In any case,
let me know if the patch improves your build:
-------------
[root@laptop1 linux]# diff -Naur fs/xfs/Makefile.orig fs/xfs/Makefile
--- fs/xfs/Makefile.orig Fri Jul 21 22:36:55 2000
+++ fs/xfs/Makefile Fri Jul 21 22:38:18 2000
@@ -88,21 +88,21 @@
endif
ifeq ($(CONFIG_XFS_RT),y)
- XFS_RT_OBJS=xfs_rtalloc.o xfs_rtbit.o
+XFS_RT_OBJS=xfs_rtalloc.o xfs_rtbit.o
else
- XFS_RT_OBJS=xfsrtstubs.o
+XFS_RT_OBJS=xfsrtstubs.o
endif
ifeq ($(CONFIG_XFS_GRIO),y)
- XFS_GRIO_OBJS=xfs_grio.o
+XFS_GRIO_OBJS=xfs_grio.o
else
- XFS_GRIO_OBJS=
+XFS_GRIO_OBJS=
endif
ifeq ($(CONFIG_XFS_DMAPI),y)
- XFS_DMAPI_OBJS=dmapi/dmapi.o
+XFS_DMAPI_OBJS=dmapi/dmapi.o
else
- XFS_DMAPI_OBJS=xfsdmapistubs.o
+XFS_DMAPI_OBJS=xfsdmapistubs.o
endif
XFS_OBJS := $(XFS_RT_OBJS) \
|