
By not running configure if not instructed to do so. https://bugzilla.gnome.org/show_bug.cgi?id=691504
6 lines
220 B
Bash
Executable file
6 lines
220 B
Bash
Executable file
#!/bin/sh
|
|
mkdir -p m4
|
|
autopoint --force
|
|
git submodule update --init --recursive
|
|
AUTOPOINT='intltoolize --automake --copy' autoreconf -fiv -Wall || exit
|
|
test -n "$NOCONFIGURE" || ./configure --enable-maintainer-mode "$@"
|