diff options
author | Amit Shah | 2010-02-26 09:30:28 +0100 |
---|---|---|
committer | Aurelien Jarno | 2010-02-27 16:10:46 +0100 |
commit | 9e0a5d5495289337da3ae871890ac3fd58351992 (patch) | |
tree | 62731467792b0c0148c1b71bfd01655d343f2392 /Makefile | |
parent | Fix to 'gdb detach' stub (diff) | |
download | qemu-9e0a5d5495289337da3ae871890ac3fd58351992.tar.gz qemu-9e0a5d5495289337da3ae871890ac3fd58351992.tar.xz qemu-9e0a5d5495289337da3ae871890ac3fd58351992.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>
Diffstat (limited to 'Makefile')
-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)" |