mirror of https://github.com/MidnightCommander/mc
Corrected bug in sed string: gettext_ver was defined only with version numbering != 5 digits.
This commit is contained in:
parent
baa2f67b78
commit
987a82ebbb
|
@ -18,7 +18,7 @@ cd $srcdir
|
||||||
rm -rf autom4te.cache vfs/samba/autom4te.cache
|
rm -rf autom4te.cache vfs/samba/autom4te.cache
|
||||||
|
|
||||||
# Ensure that gettext is reasonably new.
|
# Ensure that gettext is reasonably new.
|
||||||
gettext_ver=`$GETTEXTIZE --version | sed -n '1s/\.//g;1s/.* //;1s/^\(...\)$/\100/p;1s/^\(...\)\(.\)$/\10\2/p'`
|
gettext_ver=`$GETTEXTIZE --version | sed -n '1s/\.//g;1s/.* //;1s/^\(...\)$/\100/;1s/^\(...\)\(.\)$/\10\2/;1p'`
|
||||||
if test $gettext_ver -lt 01038; then
|
if test $gettext_ver -lt 01038; then
|
||||||
echo "Don't use gettext older than 0.10.38" 2>&1
|
echo "Don't use gettext older than 0.10.38" 2>&1
|
||||||
exit 1
|
exit 1
|
||||||
|
|
Loading…
Reference in New Issue