4d66f16ff4a19a74eadcd3017d51b451b73bda46
[profile/ivi/murphy.git] / bootstrap
1 #!/bin/bash
2
3 aclocal -I m4 && \
4     autoheader && \
5         libtoolize --copy --force && \
6             autoconf && \
7                 automake --add-missing --copy
8
9 status=$?
10
11 if [ $status == 0 ]; then
12     if [ "$1" == "configure" ]; then
13         shift
14         ./configure $*
15         status=$?
16     fi
17 fi
18
19 exit $status