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

RE: zsh-4.0.[12] won't "configure"



> See config.modules for installed modules and functions.
>
> creating Config/defs.mk
> sed: Couldn't open file ./Config/funcinst.mk


You must have broken sed. funcinst.mk was removed in 3.1.9-dev-8 when
config.modules was introduced. It still hangs around, but it should not harm
in any way; look:

/@FUNCINST_MK@/r /tools/src/zsh-4.0.x/Config/funcinst.mk

so if @FUNCINST_MK@ exists somewhere it will be replaced; if not the above
never match. But

bor@itsrm2% grep FUNCINST_MK **/Makefile.in
bor@itsrm2%

Anyway, we better remove it from configure.

-andrej

Index: zshconfig.ac
===================================================================
RCS file: /cvsroot/zsh/zsh/zshconfig.ac,v
retrieving revision 1.14
diff -u -r1.14 zshconfig.ac
--- zshconfig.ac        2001/07/02 19:39:34     1.14
+++ zshconfig.ac        2001/07/03 05:52:06
@@ -1913,13 +1913,11 @@
 CONFIG_MK="${srcdir}/Config/config.mk"
 dnl defs.mk is in the build tree, not the source tree
 DEFS_MK="Config/defs.mk"
-FUNCINST_MK="${srcdir}/Config/funcinst.mk"
 VERSION_MK="${srcdir}/Config/version.mk"

 AC_SUBST_FILE(CLEAN_MK)dnl
 AC_SUBST_FILE(CONFIG_MK)dnl
 AC_SUBST_FILE(DEFS_MK)dnl
-AC_SUBST_FILE(FUNCINST_MK)dnl
 AC_SUBST_FILE(VERSION_MK)dnl

 AC_OUTPUT(Config/defs.mk Makefile Doc/Makefile Etc/Makefile Src/Makefile \



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