diff options
author | Ismael Luceno Cortes <ismael.luceno@silicon-gears.com> | 2019-02-18 09:17:04 +0000 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2019-02-19 16:58:24 -0500 |
commit | 2d3beff2d297d278b3944289be285a59fa7904e0 (patch) | |
tree | 0eea032855b5dea5cd05951cd70da52f664bbd64 /cmd/Makefile | |
parent | 72384ff2e95bc54380f1015eb087211cc199844a (diff) |
cmd: pcmcia: Build only if CONFIG_CMD_PCMCIA=y
Signed-off-by: Ismael Luceno <ismael.luceno@silicon-gears.com>
Diffstat (limited to 'cmd/Makefile')
-rw-r--r-- | cmd/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/Makefile b/cmd/Makefile index 15ae4d250f..a127a99539 100644 --- a/cmd/Makefile +++ b/cmd/Makefile @@ -104,7 +104,7 @@ obj-$(CONFIG_CMD_PART) += part.o ifdef CONFIG_PCI obj-$(CONFIG_CMD_PCI) += pci.o endif -obj-y += pcmcia.o +obj-$(CONFIG_CMD_PCMCIA) += pcmcia.o obj-$(CONFIG_CMD_PINMUX) += pinmux.o obj-$(CONFIG_CMD_PXE) += pxe.o obj-$(CONFIG_CMD_WOL) += wol.o |