diff options
| -rw-r--r-- | fs/xfs/Makefile-linux-2.6 | 2 | ||||
| -rw-r--r-- | fs/xfs/quota/Makefile-linux-2.6 | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/fs/xfs/Makefile-linux-2.6 b/fs/xfs/Makefile-linux-2.6 index fbfcbe5a7cda..8e18ff157247 100644 --- a/fs/xfs/Makefile-linux-2.6 +++ b/fs/xfs/Makefile-linux-2.6 | |||
| @@ -55,7 +55,7 @@ ifeq ($(CONFIG_XFS_TRACE),y) | |||
| 55 | endif | 55 | endif |
| 56 | 56 | ||
| 57 | obj-$(CONFIG_XFS_FS) += xfs.o | 57 | obj-$(CONFIG_XFS_FS) += xfs.o |
| 58 | obj-$(CONFIG_XFS_QUOTA) += quota/ | 58 | xfs-$(CONFIG_XFS_QUOTA) += quota/ |
| 59 | 59 | ||
| 60 | xfs-$(CONFIG_XFS_RT) += xfs_rtalloc.o | 60 | xfs-$(CONFIG_XFS_RT) += xfs_rtalloc.o |
| 61 | xfs-$(CONFIG_XFS_POSIX_ACL) += xfs_acl.o | 61 | xfs-$(CONFIG_XFS_POSIX_ACL) += xfs_acl.o |
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 |
| 42 | endif | 42 | endif |
| 43 | 43 | ||
| 44 | obj-$(CONFIG_XFS_QUOTA) += xfs_quota.o | 44 | xfs-$(CONFIG_XFS_QUOTA) += xfs_dquot.o \ |
| 45 | |||
| 46 | xfs_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 | ||
| 53 | xfs_quota-$(CONFIG_PROC_FS) += xfs_qm_stats.o | 51 | ifeq ($(CONFIG_XFS_QUOTA),y) |
| 52 | xfs-$(CONFIG_PROC_FS) += xfs_qm_stats.o | ||
| 53 | endif | ||
