diff options
| author | Barton E. Schaefer <schaefer@zsh.org> | 2013-11-25 00:11:36 -0800 |
|---|---|---|
| committer | Barton E. Schaefer <schaefer@zsh.org> | 2013-11-25 00:11:36 -0800 |
| commit | 7b0ea6e00d2ba07e74bda330658ee31c0622d848 (patch) | |
| tree | 3df1fd16e96df4b4d0a6936c87075b37ecd5201c /configure.ac | |
| parent | 32031 plus missed _run_help: get helpfiles install path corect in functions (diff) | |
| download | zsh-7b0ea6e00d2ba07e74bda330658ee31c0622d848.tar zsh-7b0ea6e00d2ba07e74bda330658ee31c0622d848.tar.gz zsh-7b0ea6e00d2ba07e74bda330658ee31c0622d848.tar.bz2 zsh-7b0ea6e00d2ba07e74bda330658ee31c0622d848.tar.lz zsh-7b0ea6e00d2ba07e74bda330658ee31c0622d848.tar.xz zsh-7b0ea6e00d2ba07e74bda330658ee31c0622d848.tar.zst zsh-7b0ea6e00d2ba07e74bda330658ee31c0622d848.zip | |
32045 (adjusted by 32047): use makefile dependencies to determine whether to
rebuild helpfiles
Diffstat (limited to 'configure.ac')
| -rw-r--r-- | configure.ac | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 607c61204..776b90828 100644 --- a/configure.ac +++ b/configure.ac @@ -269,6 +269,11 @@ fi], [runhelpdir=yes]) if test x"$runhelpdir" = xyes; then runhelpdir=${datadir}/${tzsh_name}/'${VERSION}'/help fi +if test x"$runhelpdir" = x; then + runhelp= +else + runhelp=runhelp +fi ifdef([fndir],[undefine([fndir])])dnl AC_ARG_ENABLE(fndir, @@ -310,6 +315,7 @@ else fi], [additionalfpath=""]) AC_SUBST(runhelpdir)dnl +AC_SUBST(runhelp)dnl AC_SUBST(additionalfpath)dnl AC_SUBST(fndir)dnl AC_SUBST(sitefndir)dnl |
