qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH] don't install keymaps with non-SDL builds


From: Joachim Henke
Subject: [Qemu-devel] [PATCH] don't install keymaps with non-SDL builds
Date: Mon, 26 Dec 2005 21:16:44 +0100

The separate keymaps are only used when QEMU is built with the SDL
frontend. So we can avoid bloated installations of non-SDL (e.g. Cocoa)
builds with this simple patch:


Index: Makefile
===================================================================
RCS file: /sources/qemu/qemu/Makefile,v
retrieving revision 1.91
diff -u -r1.91 Makefile
--- Makefile    6 Dec 2005 21:42:03 -0000       1.91
+++ Makefile    23 Dec 2005 19:27:10 -0000
@@ -67,8 +67,10 @@
 ifndef CONFIG_WIN32
        mkdir -p "$(mandir)/man1"
        install qemu.1 qemu-img.1 "$(mandir)/man1"
+ifdef CONFIG_SDL
        mkdir -p "$(datadir)/keymaps"
        install -m 644 $(addprefix keymaps/,$(KEYMAPS)) "$(datadir)/keymaps"
+endif
 endif
        for d in $(TARGET_DIRS); do \
        $(MAKE) -C $$d $@ || exit 1 ; \





reply via email to

[Prev in Thread] Current Thread [Next in Thread]