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` gprefix=`which glibtoolize 2>&1 >/dev/null`
if [ $? -eq 0 ]; then if [ $? -eq 0 ]; then
glibtoolize --force glibtoolize --force
...@@ -15,8 +17,10 @@ test -z "$srcdir" && srcdir=. ...@@ -15,8 +17,10 @@ test -z "$srcdir" && srcdir=.
autoheader autoheader
automake --add-missing automake --add-missing
autoconf 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