e_policy_visibility: modify code to consider the child's launch cancel while waiting...
[platform/upstream/enlightenment.git] / autogen.sh
1 #!/bin/sh
2
3 test -n "$srcdir" || srcdir=`dirname "$0"`
4 test -n "$srcdir" || srcdir=.
5 (
6   cd "$srcdir" &&
7   (
8     rm -rf autom4te.cache
9     rm -f aclocal.m4 ltmain.sh config.cache
10
11     autoreconf --symlink --install || exit 1
12   )
13 )
14
15 test -n "$NOCONFIGURE" || exec $srcdir/configure -C "$@"
16
17 exit 0