mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-21 17:51:03 +00:00
Amend ddf2c2a9d4
This commit is contained in:
parent
ddf2c2a9d4
commit
2c4e109b96
@ -8,7 +8,7 @@ AUTOCONF="autoconf"
|
||||
# Discover what version of automake we are using.
|
||||
automake_version=$($AUTOMAKE --version 2>/dev/null | head -n 1)
|
||||
|
||||
if "$automake_version" != ""; then
|
||||
if test "$automake_version" != ""; then
|
||||
echo "Using $automake_version"
|
||||
else
|
||||
echo "LyX requires automake >= 1.14"
|
||||
@ -28,7 +28,7 @@ esac
|
||||
# Discover what version of autoconf we are using.
|
||||
autoversion=$($AUTOCONF --version 2>/dev/null | head -n 1)
|
||||
|
||||
if "$autoversion" != ""; then
|
||||
if test "$autoversion" != ""; then
|
||||
echo "Using $autoversion"
|
||||
else
|
||||
echo "LyX requires autoconf >= 2.65"
|
||||
|
Loading…
Reference in New Issue
Block a user