diff options
| author | Adrian Bunk <bunk@fs.tum.de> | 2004-05-21 20:50:24 -0700 |
|---|---|---|
| committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2004-05-21 20:50:24 -0700 |
| commit | 8fcb7c3382519c89928c44b68fe4cfc43b963e7f (patch) | |
| tree | 5db1bd857dd628626e4e6c76cf12521e556a94bf | |
| parent | c56f34ada055e621ad520ea948a956204971eac2 (diff) | |
[PATCH] JFFS2_FS_NAND=y compile error
The case of CONFIG_JFFS2_FS_NAND=y got broken recently.
The bug is obvious, and the fix is trivial:
| -rw-r--r-- | fs/jffs2/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/jffs2/Makefile b/fs/jffs2/Makefile index 6b776178c69f..1a47874c7c35 100644 --- a/fs/jffs2/Makefile +++ b/fs/jffs2/Makefile @@ -12,4 +12,4 @@ jffs2-y += read.o nodemgmt.o readinode.o write.o scan.o gc.o jffs2-y += symlink.o build.o erase.o background.o fs.o writev.o jffs2-y += super.o -jffs2-$(CONFIG_JFFS2_FS_NAND) := wbuf.o +jffs2-$(CONFIG_JFFS2_FS_NAND) += wbuf.o |
