Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 104700 | Differences between
and this patch

Collapse All | Expand All

(-)autogen.sh.orig (-2 / +2 lines)
Lines 47-53 Link Here
47
fi
47
fi
48
48
49
automake=''
49
automake=''
50
for am in automake automake-1.7 automake-1.8 automake-1.9; do
50
for am in automake automake-1.7 automake-1.8; do
51
	if $am --version < /dev/null > /dev/null 2>&1 ; then
51
	if $am --version < /dev/null > /dev/null 2>&1 ; then
52
		am_version=`$am --version | grep 'automake (GNU automake)' | sed 's/^[^0-9]*\(.*\)/\1/'`
52
		am_version=`$am --version | grep 'automake (GNU automake)' | sed 's/^[^0-9]*\(.*\)/\1/'`
53
		case $am_version in
53
		case $am_version in
Lines 63-69 Link Here
63
fi
63
fi
64
64
65
aclocal=''
65
aclocal=''
66
for acl in aclocal aclocal-1.7 aclocal-1.8 aclocal-1.9 ; do
66
for acl in aclocal aclocal-1.7 aclocal-1.8; do
67
	if $acl --version < /dev/null > /dev/null 2>&1 ; then
67
	if $acl --version < /dev/null > /dev/null 2>&1 ; then
68
		acl_version=`$acl --version | grep 'aclocal (GNU automake)' | sed 's/^[^0-9]*\(.*\)/\1/'`
68
		acl_version=`$acl --version | grep 'aclocal (GNU automake)' | sed 's/^[^0-9]*\(.*\)/\1/'`
69
		case $acl_version in
69
		case $acl_version in

Return to bug 104700