Skip to content

Commit

Permalink
[XFS] Fix modular XFS builds (Makefile botch).
Browse files Browse the repository at this point in the history
Signed-off-by: Nathan Scott <nathans@sgi.com>
  • Loading branch information
Nathan Scott committed Sep 8, 2005
1 parent 20ba028 commit eccdfcd
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion fs/xfs/Makefile-linux-2.6
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ ifeq ($(CONFIG_XFS_TRACE),y)
endif

obj-$(CONFIG_XFS_FS) += xfs.o
obj-$(CONFIG_XFS_QUOTA) += quota/
xfs-$(CONFIG_XFS_QUOTA) += quota/

xfs-$(CONFIG_XFS_RT) += xfs_rtalloc.o
xfs-$(CONFIG_XFS_POSIX_ACL) += xfs_acl.o
Expand Down
8 changes: 4 additions & 4 deletions fs/xfs/quota/Makefile-linux-2.6
Original file line number Diff line number Diff line change
Expand Up @@ -41,13 +41,13 @@ ifeq ($(CONFIG_XFS_TRACE),y)
EXTRA_CFLAGS += -DXFS_VNODE_TRACE
endif

obj-$(CONFIG_XFS_QUOTA) += xfs_quota.o

xfs_quota-y += xfs_dquot.o \
xfs-$(CONFIG_XFS_QUOTA) += xfs_dquot.o \
xfs_dquot_item.o \
xfs_trans_dquot.o \
xfs_qm_syscalls.o \
xfs_qm_bhv.o \
xfs_qm.o

xfs_quota-$(CONFIG_PROC_FS) += xfs_qm_stats.o
ifeq ($(CONFIG_XFS_QUOTA),y)
xfs-$(CONFIG_PROC_FS) += xfs_qm_stats.o
endif

0 comments on commit eccdfcd

Please sign in to comment.