diff options
| author | Michael Tokarev <mjt@tls.msk.ru> | 2018-04-16 12:37:19 +0300 |
|---|---|---|
| committer | Peter Maydell <peter.maydell@linaro.org> | 2018-04-16 16:25:24 +0100 |
| commit | 2a6b5372d7bad038fe27f9c60e85ef5c8a15e311 (patch) | |
| tree | 45ddcb51538e1d79a12ec3048fc9372c9624f85b | |
| parent | 042f6a31af3d38eefc6ec995cce1d762c41d4515 (diff) | |
| download | focaccia-qemu-2a6b5372d7bad038fe27f9c60e85ef5c8a15e311.tar.gz focaccia-qemu-2a6b5372d7bad038fe27f9c60e85ef5c8a15e311.zip | |
Makefile: install gtk message catalogs if CONFIG_GTK=y too, not only =m
Fixes 722cd7496474cebb2218f21e038592fad8603365 Signed-off-by: Michael Tokarev <mjt@tls.msk.ru> Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Tested-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Message-id: 20180416093719.2543-1-mjt@msgid.tls.msk.ru Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
| -rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile index 727ef118f3..d71dd5bea4 100644 --- a/Makefile +++ b/Makefile @@ -856,7 +856,7 @@ ifneq ($(BLOBS),) $(INSTALL_DATA) $(SRC_PATH)/pc-bios/$$x "$(DESTDIR)$(qemu_datadir)"; \ done endif -ifeq ($(CONFIG_GTK),m) +ifdef CONFIG_GTK $(MAKE) -C po $@ endif $(INSTALL_DIR) "$(DESTDIR)$(qemu_datadir)/keymaps" |