diff options
author | KaiGai Kohei <kaigai@ak.jp.nec.com> | 2006-11-15 07:16:13 -0600 |
---|---|---|
committer | Josh Boyer <jwboyer@gmail.com> | 2006-11-15 07:16:13 -0600 |
commit | 7256ce0a316f532650c8a0e1b27a8512d4474c00 (patch) | |
tree | f64c4cde862dcdf2e07a8ae107b81e5a97e707a3 /Makefile | |
parent | 37f40f5574e04ae050507133ade8fe0e6bae2f0d (diff) |
Patch from KaiGai Kohei to enable building without xattr support
Signed-off-by: Josh Boyer <jwboyer@gmail.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -17,6 +17,10 @@ else BUILDDIR := $(CROSS:-=) endif +ifeq ($(WITHOUT_XATTR), 1) + CFLAGS += -DWITHOUT_XATTR +endif + RAWTARGETS = ftl_format flash_erase flash_eraseall nanddump doc_loadbios \ mkfs.jffs ftl_check mkfs.jffs2 flash_lock flash_unlock flash_info \ flash_otp_info flash_otp_dump mtd_debug flashcp nandwrite \ |