mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-22 02:48:08 +01:00
20 lines
538 B
Bash
Executable file
20 lines
538 B
Bash
Executable file
#!/bin/sh
|
|
# vim: set sw=4 et sts=4 tw=80 :
|
|
|
|
die() {
|
|
echo "$@" >&2
|
|
exit 1
|
|
}
|
|
|
|
echo ">>> libtoolize --copy --force --automake"
|
|
libtoolize --copy --force --automake || die "libtoolize failed"
|
|
echo ">>> rm -f config.cache"
|
|
rm -f config.cache
|
|
echo ">>> aclocal -I m4"
|
|
aclocal -I m4 || die "aclocal failed"
|
|
echo ">>> autoheader"
|
|
autoheader || die "autoheader failed"
|
|
echo ">>> autoconf"
|
|
autoconf || die "autoconf failed"
|
|
echo ">>> automake --foreign --add-missing --copy"
|
|
automake --foreign --add-missing --copy || die "automake failed"
|