84eb370298
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.
14 lines
216 B
Bash
Executable File
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 "$@"
|