1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-09-02 22:11:54 +02:00

41342: check for Yodl version 4

This commit is contained in:
Axel Beckert 2017-06-22 03:46:52 +02:00 committed by Peter Stephenson
parent c5783576e8
commit a0f33b5a6b
2 changed files with 3 additions and 0 deletions

View file

@ -1,5 +1,7 @@
2017-06-22 Peter Stephenson <p.stephenson@samsung.com>
* Axel: 41342: conigure.ac: check for yodl version 4.
* 41339: Completion/Unix/Command/_git: unquote treeish argument
for git checkout completion.

View file

@ -628,6 +628,7 @@ if test "x$ac_cv_prog_YODL" = xyodl; then
case `yodl --version` in
*"version 2."*) YODL_OPTIONS='-k' ;;
*"version 3."*) YODL_OPTIONS='-k -L' ;;
*"version 4."*) YODL_OPTIONS='-k -L' ;;
esac
fi
AC_SUBST(YODL_OPTIONS)