blob: c1cf7ed641779cffd6a7d9bfc818e74a8fe96207 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
#!/bin/sh
if which libtoolize >/dev/null
then
LIBTOOLIZE=libtoolize
else
if which glibtoolize >/dev/null
then
# on the Mac it's called glibtoolize for some reason
LIBTOOLIZE=glibtoolize
else
echo "libtoolize not found"
exit 1
fi
fi
$LIBTOOLIZE --force 2>&1 | sed '/^You should/d' || {
echo "libtool failed, exiting..."
exit 1
}
aclocal $ACLOCAL_FLAGS -I config || {
echo "aclocal \$ACLOCAL_FLAGS where \$ACLOCAL_FLAGS= failed, exiting..."
exit 1
}
autoheader || {
echo "autoheader failed, exiting..."
exit 1
}
automake --add-missing --foreign || {
echo "automake --add-missing --foreign failed, exiting..."
exit 1
}
autoconf || {
echo "autoconf failed, exiting..."
exit 1
}
if test x$1 != x--no-conf; then
echo "Running ./configure --enable-maintainer-mode $@..."
./configure --enable-maintainer-mode $@
fi
|