From: Boaz Harrosh Date: Thu, 27 Oct 2011 01:26:49 +0000 (-0700) Subject: fs/Makefile: Stupid typo breakage of exofs inclusion X-Git-Tag: v3.2-rc1~149 X-Git-Url: http://git.cascardo.info/?a=commitdiff_plain;h=60325f0c6ee7c6b68f95aaa643260fb33d4bdd88;p=cascardo%2Flinux.git fs/Makefile: Stupid typo breakage of exofs inclusion In my last patch I did a stupid mistake and broke the exofs compilation completely. Fix it ASAP. Instead of obj-y I did obj-$(y) Really Really sorry. Me totally blushing :-{| Signed-off-by: Boaz Harrosh Signed-off-by: Linus Torvalds --- diff --git a/fs/Makefile b/fs/Makefile index 5c30a13341eb..d2c3353d5477 100644 --- a/fs/Makefile +++ b/fs/Makefile @@ -120,6 +120,6 @@ obj-$(CONFIG_DEBUG_FS) += debugfs/ obj-$(CONFIG_OCFS2_FS) += ocfs2/ obj-$(CONFIG_BTRFS_FS) += btrfs/ obj-$(CONFIG_GFS2_FS) += gfs2/ -obj-$(y) += exofs/ # Multiple mods, used by nfs/objlayout +obj-y += exofs/ # Multiple modules obj-$(CONFIG_CEPH_FS) += ceph/ obj-$(CONFIG_PSTORE) += pstore/