diff options
author | Amit Shah <amit.shah@redhat.com> | 2010-02-26 14:00:28 +0530 |
---|---|---|
committer | Aurelien Jarno <aurelien@aurel32.net> | 2010-02-27 16:10:46 +0100 |
commit | c5708a1c13e5de836a975c68184c39c774795cee (patch) | |
tree | 62731467792b0c0148c1b71bfd01655d343f2392 | |
parent | 2dc9776f829785b20795131c23e00aa30b264fa1 (diff) | |
download | qemu-c5708a1c13e5de836a975c68184c39c774795cee.tar.gz qemu-c5708a1c13e5de836a975c68184c39c774795cee.tar.bz2 qemu-c5708a1c13e5de836a975c68184c39c774795cee.zip |
Fix 'make install' from non-srcdir build
Commit b5ec5ce0 broke 'make install' from non source-dir build. Fix.
Signed-off-by: Amit Shah <amit.shah@redhat.com>
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -193,7 +193,7 @@ endif install-sysconfig: $(INSTALL_DIR) "$(sysconfdir)/qemu" - $(INSTALL_DATA) sysconfigs/target/target-x86_64.conf "$(sysconfdir)/qemu" + $(INSTALL_DATA) $(SRC_PATH)/sysconfigs/target/target-x86_64.conf "$(sysconfdir)/qemu" install: all $(if $(BUILD_DOCS),install-doc) install-sysconfig $(INSTALL_DIR) "$(DESTDIR)$(bindir)" |