debuggers.hg
changeset 19062:b999142bca8c
stubdom: Fix compilation after libelf header changes
Changeset 19011:7df072566b8c moved some of the libelf headers.
However, no changes were made to stubdom/Makefile.
stubdom/Makefile unfortunately contains embedded in it knowledge about
the header directory structures, and must therefore typically be
updated if new header directories are created.
Signed-off-by: Ian Jackson <ian.jackson@eu.citrix.com>
Changeset 19011:7df072566b8c moved some of the libelf headers.
However, no changes were made to stubdom/Makefile.
stubdom/Makefile unfortunately contains embedded in it knowledge about
the header directory structures, and must therefore typically be
updated if new header directories are created.
Signed-off-by: Ian Jackson <ian.jackson@eu.citrix.com>
author | Keir Fraser <keir.fraser@citrix.com> |
---|---|
date | Fri Jan 09 16:56:54 2009 +0000 (2009-01-09) |
parents | 1dfc48a8c361 |
children | bd78714b8594 |
files | stubdom/Makefile |
line diff
1.1 --- a/stubdom/Makefile Fri Jan 09 15:57:57 2009 +0000 1.2 +++ b/stubdom/Makefile Fri Jan 09 16:56:54 2009 +0000 1.3 @@ -194,6 +194,7 @@ mk-headers-$(XEN_TARGET_ARCH): ioemu/lin 1.4 ln -sf $(addprefix ../../,$(wildcard $(XEN_ROOT)/xen/include/public/*.h)) include/xen && \ 1.5 ln -sf $(addprefix ../../$(XEN_ROOT)/xen/include/public/,arch-ia64 arch-x86 hvm io xsm) include/xen && \ 1.6 ( [ -h include/xen/sys ] || ln -sf ../../$(XEN_ROOT)/tools/include/xen-sys/MiniOS include/xen/sys ) && \ 1.7 + ( [ -h include/xen/libelf ] || ln -sf ../../$(XEN_ROOT)/tools/include/xen/libelf include/xen/libelf ) && \ 1.8 mkdir -p include/xen-foreign && \ 1.9 ln -sf $(addprefix ../../,$(wildcard $(XEN_ROOT)/tools/include/xen-foreign/*)) include/xen-foreign/ && \ 1.10 $(MAKE) -C include/xen-foreign/ && \