[go: up one dir, main page]

Menu

[97a570]: / autogen.sh  Maximize  Restore  History

Download this file

13 lines (10 with data), 347 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
#!/bin/sh
# needed for Gentoo to choose the right automake
WANT_AUTOMAKE=1.8
export WANT_AUTOMAKE
( automake --version | head -n 1 | grep -q ' 1\.[678]') || (echo "automake 1.6 or above is required"; exit 1)
aclocal -I acinclude && \
autoheader && \
automake -a && \
autoconf && \
./configure "$@"