diff options
author | Tanaka Akira <akr@users.sourceforge.net> | 2000-01-07 22:33:44 +0000 |
---|---|---|
committer | Tanaka Akira <akr@users.sourceforge.net> | 2000-01-07 22:33:44 +0000 |
commit | e7ae836047b15d920914b560c94cc9cf7fb7471c (patch) | |
tree | 05af96c69997515b91f1dc632c3888241fa5dbea | |
parent | b43fb116b89dd6e54fa17d5685351f8d03426bb9 (diff) | |
download | zsh-e7ae836047b15d920914b560c94cc9cf7fb7471c.tar.gz zsh-e7ae836047b15d920914b560c94cc9cf7fb7471c.tar.xz zsh-e7ae836047b15d920914b560c94cc9cf7fb7471c.zip |
zsh-workers/9266
-rw-r--r-- | INSTALL | 2 | ||||
-rw-r--r-- | configure.in | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/INSTALL b/INSTALL index 6f6a6108c..55b1ea11a 100644 --- a/INSTALL +++ b/INSTALL @@ -247,7 +247,7 @@ Shell functions By default, the shell functions which are installed with `make install' or `make install.fns' go into the directory ${datadir}/zsh/functions, which unless you have specified --datadir is the same as -${prefix}/share/zsh/functions/$ZSH_VERSION ($prefix itself defaults to +${prefix}/share/zsh/$ZSH_VERSION/functions ($prefix itself defaults to /usr/local, as described below). This directory will also be compiled into the shell as the default directory for the variable $fpath/$FPATH. You can override it with --enable-fndir=directory; --disable-fndir or diff --git a/configure.in b/configure.in index 5b9a330d2..3263710b1 100644 --- a/configure.in +++ b/configure.in @@ -214,10 +214,10 @@ undefine([fndir])dnl AC_ARG_ENABLE(fndir, [ --enable-fndir=DIR where functions go (default DATADIR/zsh/functions)], [if test $enableval = yes; then - fndir=${datadir}/${tzsh_name}/functions/${VERSION} + fndir=${datadir}/${tzsh_name}/${VERSION}/functions else fndir="$enableval" -fi], [fndir=${datadir}/${tzsh_name}/functions/${VERSION}]) +fi], [fndir=${datadir}/${tzsh_name}/${VERSION}/functions]) undefine([function_subdirs]) AC_ARG_ENABLE(function-subdirs, |