6 lines
195 B
Bash
Executable file
6 lines
195 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 "$@"
|