aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKeir Fraser <keir.fraser@citrix.com>2010-05-10 09:47:21 +0100
committerKeir Fraser <keir.fraser@citrix.com>2010-05-10 09:47:21 +0100
commitae449980c93fd5ecd5707f5a98d75f525bc6c9ad (patch)
tree2ff5348ef99f910a1a245390c693771267e79995
parent1e0f0d3e594d82c04e1881681192875c1e4f7808 (diff)
downloadxen-ae449980c93fd5ecd5707f5a98d75f525bc6c9ad.tar.gz
xen-ae449980c93fd5ecd5707f5a98d75f525bc6c9ad.tar.bz2
xen-ae449980c93fd5ecd5707f5a98d75f525bc6c9ad.zip
linux pvdrv: generalize location of autoconf.h
The location of the file in the build tree changed in recent Linux; since there can be only one such file, using a wild card instead of an explicit directory name seems the easiest solution. Signed-off-by: Jan Beulich <jbeulich@novell.com> xen-unstable changeset: 21273:d2373000996d xen-unstable date: Tue May 04 12:42:56 2010 +0100
-rw-r--r--unmodified_drivers/linux-2.6/overrides.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/unmodified_drivers/linux-2.6/overrides.mk b/unmodified_drivers/linux-2.6/overrides.mk
index f30426eb19..803eccd3be 100644
--- a/unmodified_drivers/linux-2.6/overrides.mk
+++ b/unmodified_drivers/linux-2.6/overrides.mk
@@ -11,7 +11,7 @@ ifeq ($(ARCH),ia64)
_XEN_CPPFLAGS += -DCONFIG_VMX_GUEST
endif
-_XEN_CPPFLAGS += -include $(objtree)/include/linux/autoconf.h
+_XEN_CPPFLAGS += -include $(wildcard $(objtree)/include/*/autoconf.h)
EXTRA_CFLAGS += $(_XEN_CPPFLAGS)
EXTRA_AFLAGS += $(_XEN_CPPFLAGS)