mirror of
https://git.code.sf.net/p/quake/quake2forge
synced 2024-12-12 05:32:24 +00:00
Automake detection fix from coob.
This commit is contained in:
parent
147a783bb6
commit
5f426405a0
1 changed files with 1 additions and 1 deletions
|
@ -26,7 +26,7 @@ if [ "$1" = "clean" ]; then
|
|||
|
||||
else
|
||||
|
||||
VERSION=`automake --version |head| sed 's/automake (GNU automake) //'`
|
||||
VERSION=`automake --version |head -1| sed 's/automake (GNU automake) //'`
|
||||
MAJOR=`echo $VERSION | cut -f1 -d.`
|
||||
MINOR=`echo $VERSION | cut -f2 -d.`
|
||||
if test "$MAJOR" -ge "1" -a "$MINOR" -ge "6"; then
|
||||
|
|
Loading…
Reference in a new issue