summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTanu Kaskinen <tanuk@iki.fi>2015-08-10 17:44:53 +0200
committerTanu Kaskinen <tanuk@iki.fi>2015-08-21 11:25:29 +0300
commitfc6c9c8810c496bd260c796fb3c1ce22497cd34b (patch)
treeec95c173316990a11dab69986cda9e5050c3b090
parent74b0fb45e534fab226ed1597cada18e828e0cdeb (diff)
downloadpulseaudio-fc6c9c8810c496bd260c796fb3c1ce22497cd34b.tar.gz
build-sys: make error message visible
This helps figuring out why bootstrap.sh is failing... Directing the error message to /dev/null was very strange. I don't know what the original motivation might have been. My guess is that it was added unintentionally.
-rwxr-xr-xbootstrap.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/bootstrap.sh b/bootstrap.sh
index 644d014f0..c9a083c1f 100755
--- a/bootstrap.sh
+++ b/bootstrap.sh
@@ -38,7 +38,7 @@ fi
# which will make PKG_PROG_PKG_CONFIG be undefined and the generated
# configure file faulty.
if ! pkg-config --version &>/dev/null; then
- echo "pkg-config is required to bootstrap this program" &>/dev/null
+ echo "pkg-config is required to bootstrap this program"
DIE=1
fi