]> git.0d.be Git - empathy.git/blob - autogen.sh
[darcs-to-svn @ Cleanup build system and add MC plugin]
[empathy.git] / autogen.sh
1 #!/bin/sh
2 set -e
3
4 autoreconf -i --force
5
6 run_configure=true
7 for arg in $*; do
8     case $arg in
9         --no-configure)
10             run_configure=false
11             ;;
12         *)
13             ;;
14     esac
15 done
16
17 if test $run_configure = true; then
18     ./configure "$@"
19 fi