Zsh Mailing List Archive
Messages sorted by: Reverse Date, Date, Thread, Author

Re: LFS and explicit LIBS RE: pws-21



"Andrej Borsenkow" wrote:
> This is configure problem; I configure with --enable-fndir and fndir got set
> to "yes".

I wasn't expecting people to use it without giving a value, but the
rules certainly allow that.

--- configure.in.fn	Mon Jun  7 12:12:59 1999
+++ configure.in	Tue Jun  8 13:21:10 1999
@@ -204,7 +204,11 @@
 undefine([fndir])dnl
 AC_ARG_ENABLE(fndir,
 [  --enable-fndir=DIR        where functions go (default DATADIR/zsh-fns)],
-[fndir="$enableval"], [fndir=${datadir}/zsh/functions])
+[if $enableval = yes; then
+  fndir=${datadir}/zsh/functions
+else
+  fndir="$enableval"
+fi], [fndir=${datadir}/zsh/functions])
 
 if test x${FUNCTIONS_INSTALL+set} != xset; then
   FUNCTIONS_INSTALL="Core/* Base/* Builtins/* User/* Commands/*"

-- 
Peter Stephenson <pws@xxxxxxxxxxxxxxxxx>       Tel: +39 050 844536
WWW:  http://www.ifh.de/~pws/
Dipartimento di Fisica, Via Buonarroti 2, 56127 Pisa, Italy



Messages sorted by: Reverse Date, Date, Thread, Author