]> git.wh0rd.org - fontconfig.git/blob - cvscompile.sh
Fix xmkmf build process for fontconfig
[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