aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorKeir Fraser <keir.fraser@citrix.com>2009-01-12 10:17:12 +0000
committerKeir Fraser <keir.fraser@citrix.com>2009-01-12 10:17:12 +0000
commitbef2c17dbcf7c3d0e2d1e11317103dc93887f328 (patch)
treead4f9d7552ec42355c9cbec37e841c82fd37977e /docs
parent9f8501582f1c60c0a631a89499fb81d8f197fb30 (diff)
downloadxen-bef2c17dbcf7c3d0e2d1e11317103dc93887f328.tar.gz
xen-bef2c17dbcf7c3d0e2d1e11317103dc93887f328.tar.bz2
xen-bef2c17dbcf7c3d0e2d1e11317103dc93887f328.zip
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 <ian.jackson@eu.citrix.com>
Diffstat (limited to 'docs')
-rw-r--r--docs/check_pkgs12
1 files changed, 6 insertions, 6 deletions
diff --git a/docs/check_pkgs b/docs/check_pkgs
index a4835a4b91..68fb76db12 100644
--- a/docs/check_pkgs
+++ b/docs/check_pkgs
@@ -2,12 +2,12 @@
silent_which ()
{
which $1 1>/dev/null 2>/dev/null || {
- echo "*************************************************"
- echo "*************************************************"
- echo "* WARNING: Package '$1' is required"
- echo "* to build Xen documentation"
- echo "*************************************************"
- echo "*************************************************"
+ echo "================================================="
+ echo "================================================="
+ echo "= WARNING: Package '$1' is required"
+ echo "= to build Xen documentation"
+ echo "================================================="
+ echo "================================================="
}
which $1 1>/dev/null 2>/dev/null
}