From: Ian Jackson Date: Tue, 6 Jan 2009 16:07:04 +0000 (+0000) Subject: xen-hooks.mak: Do not print `***' when compiling unless we fall over X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=6c85b471c3f3ad8959828fe667e810012238a92a;p=xenclient%2Fioemu.git xen-hooks.mak: Do not print `***' when compiling unless we fall over make prints `***' when it stops due to an error. With make -j, and/or with automated build systems, this error marker can be in the middle of a large logfile. It is useful to be able to search for it. Therefore change occurrences of `*' to `#' for information and warning messages. `***' is reserved for cases where the build stops. A corresponding change is being submitted to xen-unstable.hg. Signed-off-by: Ian Jackson --- diff --git a/xen-hooks.mak b/xen-hooks.mak index cc899dc0..707a2d52 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