aboutsummaryrefslogtreecommitdiffstats
path: root/fs/xfs/quota
diff options
context:
space:
mode:
authorNathan Scott <nathans@bruce>2005-09-08 01:38:52 -0400
committerNathan Scott <nathans@bruce>2005-09-08 01:38:52 -0400
commiteccdfcd6f8265300380fa14a83aeb14e69830323 (patch)
tree04449986928d7666798a269080545d296f465b8b /fs/xfs/quota
parent20ba02879bc78cdf1ed89a1c6a92ee55d31ee103 (diff)
[XFS] Fix modular XFS builds (Makefile botch).
Signed-off-by: Nathan Scott <nathans@sgi.com>
Diffstat (limited to 'fs/xfs/quota')
-rw-r--r--fs/xfs/quota/Makefile-linux-2.68
1 files changed, 4 insertions, 4 deletions
diff --git a/fs/xfs/quota/Makefile-linux-2.6 b/fs/xfs/quota/Makefile-linux-2.6
index 8b7b676718b9..93e60e839355 100644
--- a/fs/xfs/quota/Makefile-linux-2.6
+++ b/fs/xfs/quota/Makefile-linux-2.6
@@ -41,13 +41,13 @@ ifeq ($(CONFIG_XFS_TRACE),y)
41 EXTRA_CFLAGS += -DXFS_VNODE_TRACE 41 EXTRA_CFLAGS += -DXFS_VNODE_TRACE
42endif 42endif
43 43
44obj-$(CONFIG_XFS_QUOTA) += xfs_quota.o 44xfs-$(CONFIG_XFS_QUOTA) += xfs_dquot.o \
45
46xfs_quota-y += xfs_dquot.o \
47 xfs_dquot_item.o \ 45 xfs_dquot_item.o \
48 xfs_trans_dquot.o \ 46 xfs_trans_dquot.o \
49 xfs_qm_syscalls.o \ 47 xfs_qm_syscalls.o \
50 xfs_qm_bhv.o \ 48 xfs_qm_bhv.o \
51 xfs_qm.o 49 xfs_qm.o
52 50
53xfs_quota-$(CONFIG_PROC_FS) += xfs_qm_stats.o 51ifeq ($(CONFIG_XFS_QUOTA),y)
52xfs-$(CONFIG_PROC_FS) += xfs_qm_stats.o
53endif