]> Git Repo - qemu.git/commitdiff
Makefile: use $(qemu_confdir) instead of $(sysconfdir)/qemu
authorEduardo Habkost <[email protected]>
Wed, 18 Apr 2012 19:55:43 +0000 (16:55 -0300)
committerAnthony Liguori <[email protected]>
Tue, 24 Apr 2012 14:50:30 +0000 (09:50 -0500)
Instead of hardcoding the directory suffix, use the qemu-specific
directory variable.

Signed-off-by: Eduardo Habkost <[email protected]>
Signed-off-by: Anthony Liguori <[email protected]>
Makefile

index c8e4b535b6add9fa9ea2d8bccbb39af538e4e4d0..a9bc79659acdd251bcf3f327cbcc363e87aa64a7 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -281,8 +281,8 @@ ifdef CONFIG_VIRTFS
        $(INSTALL_DATA) fsdev/virtfs-proxy-helper.1 "$(DESTDIR)$(mandir)/man1"
 endif
 install-sysconfig:
-       $(INSTALL_DIR) "$(DESTDIR)$(sysconfdir)/qemu"
-       $(INSTALL_DATA) $(SRC_PATH)/sysconfigs/target/target-x86_64.conf "$(DESTDIR)$(sysconfdir)/qemu"
+       $(INSTALL_DIR) "$(DESTDIR)$(qemu_confdir)"
+       $(INSTALL_DATA) $(SRC_PATH)/sysconfigs/target/target-x86_64.conf "$(DESTDIR)$(qemu_confdir)"
 
 install: all $(if $(BUILD_DOCS),install-doc) install-sysconfig
        $(INSTALL_DIR) "$(DESTDIR)$(bindir)"
This page took 0.024295 seconds and 4 git commands to generate.