hide benign message from gettextize

This commit is contained in:
John Cupitt 2015-04-20 16:54:45 +01:00
parent 7495690cd6
commit 3cc408fd1e
1 changed files with 4 additions and 2 deletions

View File

@ -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