about summary refs log tree commit diff
diff options
context:
space:
mode:
authorPeter Stephenson <pws@users.sourceforge.net>2012-09-09 18:29:05 +0000
committerPeter Stephenson <pws@users.sourceforge.net>2012-09-09 18:29:05 +0000
commitd88365d964cb521097f70efb21935a776659a7ed (patch)
tree296a614d2d831e8dab3c6000f7b1e15868a5f10a
parent21e1894f7ed7cd8f9921cb10d0ecdc33cc8b1b84 (diff)
downloadzsh-d88365d964cb521097f70efb21935a776659a7ed.tar.gz
zsh-d88365d964cb521097f70efb21935a776659a7ed.tar.xz
zsh-d88365d964cb521097f70efb21935a776659a7ed.zip
30664: Jun T.: fix some Yodl version issues
-rw-r--r--ChangeLog6
-rw-r--r--configure.ac3
2 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index eecf65d42..cf53ffbe6 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2012-09-09  Peter Stephenson  <p.w.stephenson@ntlworld.com>
+
+	* Jun T.: 30664: configure.ac: fix some Yodl version issues.
+
 2012-09-08  Peter Stephenson  <p.w.stephenson@ntlworld.com>
 
 	* users/17236: Src/builtin.c: r and other fc output didn't
@@ -147,5 +151,5 @@
 
 *****************************************************
 * This is used by the shell to define $ZSH_PATCHLEVEL
-* $Revision: 1.5717 $
+* $Revision: 1.5718 $
 *****************************************************
diff --git a/configure.ac b/configure.ac
index 986ef3a33..5528597ba 100644
--- a/configure.ac
+++ b/configure.ac
@@ -565,7 +565,8 @@ AC_CHECK_PROGS([YODL], [yodl], [: yodl])
 YODL_OPTIONS=''
 if test "x$ac_cv_prog_YODL" = xyodl; then
     case `yodl --version` in
-      *"version 3."*) YODL_OPTIONS='-L' ;;
+      *"version 2."*) YODL_OPTIONS='-k' ;;
+      *"version 3."*) YODL_OPTIONS='-k -L' ;;
     esac
 fi
 AC_SUBST(YODL_OPTIONS)