mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-03-21 18:01:15 +00:00
fix a bug with automake detection
This commit is contained in:
parent
d6c05fd5ab
commit
99426c36c6
1 changed files with 1 additions and 1 deletions
|
@ -48,7 +48,7 @@ fi
|
|||
am=`which automake`
|
||||
if test -n "$am" ; then
|
||||
if test -x "$am" ; then
|
||||
AM_VER=`automake --version |head| sed 's/automake (GNU automake) //'`
|
||||
AM_VER=`automake --version | head -1 | sed 's/automake (GNU automake) //'`
|
||||
AM_VER_MAJOR=`echo $AM_VER | cut -f1 -d.`
|
||||
AM_VER_MINOR=`echo $AM_VER | cut -f2 -d.`
|
||||
if test "$AM_VER_MAJOR" -lt "1"; then
|
||||
|
|
Loading…
Reference in a new issue