diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | configure.ac | 3 |
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) |