From bef2c17dbcf7c3d0e2d1e11317103dc93887f328 Mon Sep 17 00:00:00 2001 From: Keir Fraser Date: Mon, 12 Jan 2009 10:17:12 +0000 Subject: Do not print `***' when compiling unless we fall over This has finally bugged me enough to do something about it: 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 applied to qemu-xen-unstable. Signed-off-by: Ian Jackson --- tools/blktap/drivers/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tools/blktap') diff --git a/tools/blktap/drivers/Makefile b/tools/blktap/drivers/Makefile index 36af03fa2c..3f2a7585d2 100644 --- a/tools/blktap/drivers/Makefile +++ b/tools/blktap/drivers/Makefile @@ -18,7 +18,7 @@ CFLAGS += -DUSE_GCRYPT CRYPT_LIB := -lgcrypt else CRYPT_LIB := -lcrypto -$(warning *** libgcrypt not installed: falling back to libcrypto ***) +$(warning === libgcrypt not installed: falling back to libcrypto ===) endif LDFLAGS_blktapctrl := $(LDFLAGS_libxenctrl) $(LDFLAGS_libxenstore) -L../lib -lblktap -- cgit v1.2.3