diff options
author | Anthony G. Basile <anthony.g.basile@gmail.com> | 2016-12-21 14:27:43 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-12-21 14:27:43 -0500 |
commit | 29f9e04a96752fc15a210b2f8f7d92081c582d4a (patch) | |
tree | 22e055982df0a677e0aae1e152f4ab795615ad3b /src | |
parent | 823db6f44cf8123ffb4fb18efd1ccfb1f927eb0c (diff) | |
parent | 2edc3cf8799eecae9cc476611f1259923314f6f8 (diff) |
Merge pull request #137 from 10ne1/dev/aratiu/upstream-disable-mtd_probe
configure.ac: add option to disable mtd_probe
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 |