In some circumstances it might not be desirable to run ./configure together with ./autogen.sh. You can now set NOCONFIGURE=1 to avoid this. Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
9 lines
128 B
Bash
Executable File
9 lines
128 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
mkdir -p m4
|
|
autoreconf -i
|
|
|
|
if test ! "x$NOCONFIGURE" = "x1" ; then
|
|
exec ./configure --enable-debug "$@"
|
|
fi
|