Subject: make install: No rule to make target `index.hhk'
From: Barton Willis
Date: Tue, 15 May 2012 11:39:20 +0000
David,
Your patch fixed this error---thanks. Now I have another problem with make install. I'm using an upto date cygwin and 64 bit Windows. With either clisp or ccl,
make install runs for quite some time then gives:
make[2]: Nothing to be done for `install-exec-am'.
/bin/sh /cygdrive/c/maximagit2/maxima/install-sh -d /usr/local/share/maxima/bran
ch_5_27_base_32_g4e4b8ba/share
0 [main] sh 1448 child_info_fork::abort: can't commit memory for stack 0x2
89000(94208), Win32 error 487
/bin/sh: fork: retry: Resource temporarily unavailable
1 [main] sh 832 child_info_fork::abort: can't commit memory for stack 0x28
9000(94208), Win32 error 487
/bin/sh: fork: retry: Resource temporarily unavailable
0 [main] sh 3848 child_info_fork::abort: can't commit memory for stack 0x2
89000(94208), Win32 error 487
/bin/sh: fork: retry: Resource temporarily unavailable
1 [main] sh 3376 child_info_fork::abort: can't commit memory for stack 0x2
89000(94208), Win32 error 487
/bin/sh: fork: retry: Resource temporarily unavailable
1 [main] sh 3828 child_info_fork::abort: can't commit memory for stack 0x2
89000(94208), Win32 error 487
/bin/sh: fork: Resource temporarily unavailable
Makefile:1574: recipe for target `install-datafiles' failed
make[2]: *** [install-datafiles] Error 254
make[2]: Leaving directory `/cygdrive/c/maximagit2/maxima/share'
Makefile:1461: recipe for target `install-am' failed
make[1]: *** [install-am] Error 2
make[1]: Leaving directory `/cygdrive/c/maximagit2/maxima/share'
Makefile:327: recipe for target `install-recursive' failed
make: *** [install-recursive] Error 1
--bw
________________________________________
Correct. The following patch makes the dependency explicit. I will
test it on a full build then check it in.
diff --git a/doc/info/Makefile.am b/doc/info/Makefile.am
old mode 100644
new mode 100755
index 208ccd6..bcc20f5
--- a/doc/info/Makefile.am
+++ b/doc/info/Makefile.am
@@ -219,7 +219,7 @@ maxima-index.lisp: maxima.info build_index.pl
maxima.html: maxima.texi $(maxima_TEXINFOS)
sh extract_categories.sh maxima
-contents.hhc: maxima.html
+contents.hhc index.hhk: maxima.html
perl ./create_index
include $(top_srcdir)/common.mk