| > From: Eric Siegerman <[EMAIL PROTECTED]> | > Date: Thu, 1 Aug 2002 13:46:05 -0400 | > | > Looks good, except that the leading "." to pacify zsh got lost | > in the shuffle. | | The zsh "." issue is still in there, though a bit terser. | | > > -$unset CDPATH || CDPATH=: | > > +$unset CDPATH || CDPATH=$PATH_SEPARATOR | > | > That "." wasn't here even in the old version, but probably should be. | | It doesn't need to be, since 'unset' works with zsh.
The Autoconf documentation was documenting how to work around the CDPATH issues without `unset', because in Makefiles that's usually what's done. For instance, with CVS Automake: % grep CDPATH Makefile am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd