From 0f4e24799bb7a54ef010423ebf91d5bc39cf55b6 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Fri, 9 Jan 2009 16:35:07 +0000 Subject: [PATCH] Work around old make's broken interpretation of `#' in $(warning ...) It seems unable to cope with it even like this $(warning "### something ###") so we will change the ### to === instead and hope that works. Signed-off-by: Ian Jackson --- xen-hooks.mak | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/xen-hooks.mak b/xen-hooks.mak index bc65bbe0..ca0464ce 100644 --- a/xen-hooks.mak +++ b/xen-hooks.mak @@ -52,8 +52,8 @@ ifdef CONFIG_STUBDOM CONFIG_PASSTHROUGH=1 else ifeq (,$(wildcard /usr/include/pci)) -$(warning "### pciutils-dev package not found - missing /usr/include/pci") -$(warning "### PCI passthrough capability has been disabled") +$(warning === pciutils-dev package not found - missing /usr/include/pci) +$(warning === PCI passthrough capability has been disabled) else CONFIG_PASSTHROUGH=1 endif @@ -63,7 +63,7 @@ ifdef CONFIG_PASSTHROUGH OBJS+= pass-through.o pt-msi.o LIBS += -lpci CFLAGS += -DCONFIG_PASSTHROUGH -$(info "### PCI passthrough capability has been enabled ###") +$(info === PCI passthrough capability has been enabled ===) endif BAD_OBJS += gdbstub.o acpi.o apic.o -- 2.39.5