This commit is contained in:
Anton Maisak 2021-07-19 20:32:00 +03:00
parent 71a4718ddd
commit 88484aa19f
2 changed files with 2 additions and 1 deletions

View File

@ -11,6 +11,7 @@
- meson-0.59.0
## Изменения
- [Исправлено #750](https://github.com/Linux4Yourself/book/pull/750)
- [Исправлено #694](https://github.com/Linux4Yourself/book/pull/694)
- [Исправлено #752](https://github.com/Linux4Yourself/book/pull/752)
- [Исправлено #746](https://github.com/Linux4Yourself/book/pull/746)

View File

@ -17,7 +17,7 @@ bison --version | head -n1
if [ -h /usr/bin/yacc ]; then
echo "/usr/bin/yacc -> `readlink -f /usr/bin/yacc`";
elif [ -x /usr/bin/yacc ]; then
echo yacc is `/usr/bin/yacc --version | head -n1`
echo yacc is `/usr/bin/yacc -V | head -n1`
else
echo "yacc not found"
fi