sugar-toolkit-gtk3/autogen.sh
Daniel Narvaez 84eb370298 Don't set ACLOCAL
The m4 directory is specified in configure.ac. This export breaks
ACLOCAL_FLAGS and makes it impossible to build with
gobject-introspection in a non system path.
2013-06-10 15:46:53 +02:00

14 lines
216 B
Bash
Executable File

#!/bin/sh
test -n "${srcdir}" || srcdir=`dirname "$0"`
test -n "${srcdir}" || srcdir="$(pwd)"
olddir="$(pwd)"
cd "$srcdir"
intltoolize
autoreconf -i
cd "$olddir"
"$srcdir/configure" --enable-maintainer-mode "$@"