blob: ba84850ab7e313a38890d6d98f02ad3cb760fc85 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/sh
for pkg in pkg-config libtool automake aclocal autoreconf:autoconf autopoint:gettext
do
if ! ${pkg%%:*} --version >/dev/null
then
echo "You need to install ${pkg##*:}"
exit 1
fi
done
autoreconf --force --install -I m4
|