Commit b7dde5fd authored by Martin Szulecki's avatar Martin Szulecki

Apply changes towards a project wide common "autogen.sh" file

parent 5ca510af
#!/bin/sh #!/bin/sh
olddir=`pwd`
srcdir=`dirname $0` srcdir=`dirname $0`
test -z "$srcdir" && srcdir=. test -z "$srcdir" && srcdir=.
( (
cd "$srcdir" cd "$srcdir"
gprefix=`which glibtoolize 2>&1 >/dev/null`
if [ $? -eq 0 ]; then gprefix=`which glibtoolize 2>&1 >/dev/null`
glibtoolize --force if [ $? -eq 0 ]; then
else glibtoolize --force
libtoolize --force else
fi libtoolize --force
aclocal -I m4 fi
autoheader aclocal -I m4
automake --add-missing autoheader
autoconf automake --add-missing
autoconf
cd "$olddir"
) )
if [ -z "$NOCONFIGURE" ]; then if [ -z "$NOCONFIGURE" ]; then
"$srcdir/configure" "$@" $srcdir/configure "$@"
fi fi
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment