All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Fix non-installed compilation
@ 2008-01-28 18:26 Samuel Thibault
  2008-01-28 18:31 ` Keir Fraser
  0 siblings, 1 reply; 2+ messages in thread
From: Samuel Thibault @ 2008-01-28 18:26 UTC (permalink / raw)
  To: xen-devel

Some headers got moved from tools/libxc/ to tools/include/
This is needed to compile on machines which don't have Xen installed
yet.

Signed-off-by: Samuel Thibault <samuel.thibault@eu.citrix.com>

diff -r a763b70405fa tools/firmware/hvmloader/Makefile
--- a/tools/firmware/hvmloader/Makefile	Mon Jan 28 13:26:30 2008 +0000
+++ b/tools/firmware/hvmloader/Makefile	Mon Jan 28 18:23:09 2008 +0000
@@ -20,7 +20,7 @@
 
 override XEN_TARGET_ARCH = x86_32
 XEN_ROOT = ../../..
-CFLAGS := -I$(XEN_ROOT)/tools/libxc -I.
+CFLAGS := -I$(XEN_ROOT)/tools/include -I$(XEN_ROOT)/tools/libxc -I.
 include $(XEN_ROOT)/tools/Rules.mk
 
 # The HVM loader is started in 32-bit mode at the address below:
diff -r a763b70405fa tools/firmware/hvmloader/acpi/Makefile
--- a/tools/firmware/hvmloader/acpi/Makefile	Mon Jan 28 13:26:30 2008 +0000
+++ b/tools/firmware/hvmloader/acpi/Makefile	Mon Jan 28 18:23:09 2008 +0000
@@ -17,7 +17,7 @@
 
 override XEN_TARGET_ARCH = x86_32
 XEN_ROOT = ../../../..
-CFLAGS := -I. -I.. -I$(XEN_ROOT)/tools/libxc
+CFLAGS := -I. -I.. -I$(XEN_ROOT)/tools/include
 include $(XEN_ROOT)/tools/Rules.mk
 
 C_SRC = build.c dsdt.c static_tables.c
diff -r a763b70405fa tools/firmware/vmxassist/Makefile
--- a/tools/firmware/vmxassist/Makefile	Mon Jan 28 13:26:30 2008 +0000
+++ b/tools/firmware/vmxassist/Makefile	Mon Jan 28 18:23:09 2008 +0000
@@ -29,7 +29,7 @@ TEXTADDR=0x000D0000
 TEXTADDR=0x000D0000
 
 DEFINES=-DDEBUG -DTEXTADDR=$(TEXTADDR)
-XENINC=-I$(XEN_ROOT)/tools/libxc
+XENINC=-I$(XEN_ROOT)/tools/include
 
 # Disable PIE/SSP if GCC supports them. They can break us.
 CFLAGS  += $(call cc-option,$(CC),-nopie,)

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2008-01-28 18:31 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-01-28 18:26 [PATCH] Fix non-installed compilation Samuel Thibault
2008-01-28 18:31 ` Keir Fraser

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.