Make missing font directory messages only displayed when verbose
[platform/upstream/fontconfig.git] / cvscompile.sh
1 #!/bin/sh
2 autoconf
3 if [ x"$NO_CONFIGURE" = "x" ]; then
4     echo " + Running 'configure $@':"
5     if [ -z "$*" ]; then
6         echo "   ** If you wish to pass arguments to ./configure, please"
7         echo "   ** specify them on the command line."
8     fi
9     ./configure ${1+"$@"} && echo "Now type 'make' to compile" || exit 1
10 fi
11