create dummy about-nls file with a touch. pants.
[platform/upstream/enlightenment.git] / autogen.sh
1 #!/bin/sh
2
3 rm -rf autom4te.cache
4 rm -f aclocal.m4 ltmain.sh
5
6 touch README
7 touch ABOUT-NLS
8
9 # no more autopoint. cuases too many hassles. too bad gentoo users - go back
10 # to automake 1.9 :(
11 #echo "Running autopoint..." ; autopoint -f || exit 1
12 echo "Running aclocal..." ; aclocal $ACLOCAL_FLAGS -I m4 || exit 1
13 echo "Running autoconf..." ; autoconf || exit 1
14 echo "Running autoheader..." ; autoheader || exit 1
15 echo "Running libtoolize..." ; (libtoolize --copy --automake || glibtoolize --automake) || exit 1
16 #echo "Running gettextize..." ; gettextize -f --no-changelog&
17 # hack - gettextize is interactive and demands input from a user. "screw it".
18 #sleep 20
19 #kill %1
20 echo "Running automake..." ; automake --add-missing --copy --gnu || exit 1
21
22 if [ -z "$NOCONFIGURE" ]; then
23         ./configure "$@"
24 fi