From patchwork Wed Jun 29 15:48:47 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: linux-user: Fix include path Date: Wed, 29 Jun 2011 05:48:47 -0000 From: =?utf-8?Q?Llu=C3=ADs?= X-Patchwork-Id: 102641 Message-Id: <20110629154847.21616.15777.stgit@ginnungagap.bsc.es> To: qemu-devel@nongnu.org This path works regardless of the current compilation directory. Signed-off-by: LluĂ­s Vilanova --- Makefile.target | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/Makefile.target b/Makefile.target index 38afdb8..9967198 100644 --- a/Makefile.target +++ b/Makefile.target @@ -15,7 +15,7 @@ endif TARGET_PATH=$(SRC_PATH)/target-$(TARGET_BASE_ARCH) $(call set-vpath, $(SRC_PATH):$(TARGET_PATH):$(SRC_PATH)/hw) ifdef CONFIG_LINUX -QEMU_CFLAGS += -I../linux-headers +QEMU_CFLAGS += -I$(SRC_PATH)/linux-headers endif QEMU_CFLAGS += -I.. -I$(TARGET_PATH) -DNEED_CPU_H