diff options
author | Ioan-Adrian Ratiu <adrian.ratiu@ni.com> | 2016-12-21 16:07:27 +0200 |
---|---|---|
committer | Ioan-Adrian Ratiu <adrian.ratiu@ni.com> | 2016-12-21 16:30:44 +0200 |
commit | 2edc3cf8799eecae9cc476611f1259923314f6f8 (patch) | |
tree | 22e055982df0a677e0aae1e152f4ab795615ad3b /src | |
parent | 823db6f44cf8123ffb4fb18efd1ccfb1f927eb0c (diff) |
configure.ac: add option to disable mtd_probe
FTL is not necessarily present on all kernels so it's useful to
have an option to disable this.
Signed-off-by: Ioan-Adrian Ratiu <adrian.ratiu@ni.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile.am | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index f0ddd0125e..fc052a83e0 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -10,6 +10,10 @@ SUBDIRS += \ ata_id \ cdrom_id \ collect \ - mtd_probe \ scsi_id \ v4l_id + +if ENABLE_MTD_PROBE +SUBDIRS += \ + mtd_probe +endif |