diff options
| author | Philippe Mathieu-Daudé <f4bug@amsat.org> | 2021-04-25 00:20:57 +0200 |
|---|---|---|
| committer | Laurent Vivier <laurent@vivier.eu> | 2021-05-02 17:24:50 +0200 |
| commit | 32bec2eea2c5ab96ba8b149cda7e33716678a5a6 (patch) | |
| tree | 192dcbbf68603effd15a88044274c7488ea33ac3 | |
| parent | 2a406e38e6f0cb2070a30ea98e779ca93a04df48 (diff) | |
| download | focaccia-qemu-32bec2eea2c5ab96ba8b149cda7e33716678a5a6.tar.gz focaccia-qemu-32bec2eea2c5ab96ba8b149cda7e33716678a5a6.zip | |
hw/pcmcia: Do not register PCMCIA type if not required
If the Kconfig 'PCMCIA' value is not selected, it is pointless to build the PCMCIA core components. (Currently only one machine of the ARM targets requires this). Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Message-Id: <20210424222057.3434459-4-f4bug@amsat.org> Signed-off-by: Laurent Vivier <laurent@vivier.eu>
| -rw-r--r-- | hw/pcmcia/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/pcmcia/meson.build b/hw/pcmcia/meson.build index ab50bd325d..51f2512b8e 100644 --- a/hw/pcmcia/meson.build +++ b/hw/pcmcia/meson.build @@ -1,2 +1,2 @@ -softmmu_ss.add(files('pcmcia.c')) +softmmu_ss.add(when: 'CONFIG_PCMCIA', if_true: files('pcmcia.c')) softmmu_ss.add(when: 'CONFIG_PXA2XX', if_true: files('pxa2xx.c')) |