From 3cc408fd1e1b08f5dc60e1f8aeb7edb3eb4982a3 Mon Sep 17 00:00:00 2001 From: John Cupitt Date: Mon, 20 Apr 2015 16:54:45 +0100 Subject: [PATCH] hide benign message from gettextize --- bootstrap.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/bootstrap.sh b/bootstrap.sh index 824d93e9..296bf12e 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -57,7 +57,9 @@ else fi test -r aclocal.m4 || touch aclocal.m4 -glib-gettextize --force --copy +# gettextize produces quite a bit of benign and misleading text output, hide +# it ... hopefully any errors will go to stderr and not be hidden +glib-gettextize --force --copy > /dev/null test -r aclocal.m4 && chmod u+w aclocal.m4 # intltoolize --copy --force --automake aclocal @@ -68,5 +70,5 @@ automake --add-missing --copy swig -version > /dev/null if [ $? -ne 0 ]; then - echo you need swig to build from SVN + echo you need swig to build from source control fi