|
From: Scott C. <ced...@gm...> - 2005-06-30 03:21:03
|
Hi Robert,
On 6/29/05, Robert Batesole <ha...@be...> wrote:
> Thanks for such a quick response. The faster I can get Infomap working i=
n
> Cygwin, the sooner I can get my portion of the project underway! *grin*
>=20
Well, I hope you can get there soon.
> The contents of my search/.deps are as follows:
>=20
> 06/29/2005 04:20p 2,741 arrayoutput.Po
> 06/29/2005 04:20p 2,822 associate.Po
> 06/29/2005 04:20p 2,581 files.Po
> 06/29/2005 04:20p 2,576 list.Po
> 06/29/2005 04:20p 2,087 model_params.Po
> 06/29/2005 04:20p 2,763 neighbors.Po
> 06/29/2005 04:20p 2,822 print_doc.Po
> 06/29/2005 04:20p 2,723 query.Po
> 06/29/2005 04:20p 1,961 search_utils.Po
> 06/29/2005 04:20p 1,359 toc.Po
> 06/29/2005 04:20p 2,607 utils.Po
>=20
So you seem to have everything you need. The question is why make
can't find these files.
> [Robert@robbiebee /tmp/infomap-nlp-0.8.5]$ make
> Makefile:200: arrayoutput.Po: No such file or directory
> Makefile:201: associate.Po: No such file or directory
> Makefile:202: files.Po: No such file or directory
> Makefile:203: list.Po: No such file or directory
> Makefile:204: model_params.Po: No such file or directory
> Makefile:205: neighbors.Po: No such file or directory
> Makefile:206: print_doc.Po: No such file or directory
> Makefile:207: query.Po: No such file or directory
> Makefile:208: search_utils.Po: No such file or directory
> Makefile:209: toc.Po: No such file or directory
> Makefile:210: utils.Po: No such file or directory
So the problem is at lines 200--210 of search/Makefile. What do these
lines say? Actually, could you send me that entire Makefile?
If the lines in question (or any other lines that refer to the *.Po
files; you should try searching through the file to find them) refer
to these files as being in a location *other* than search/.deps/, you
should change them.
In my makefile, for instance, there are lines that say
include ./$(DEPDIR)arrayoutput.Po
include ./$(DEPDIR)/associate.Po
include ./$(DEPDIR)/files.Po
etc. $(DEPDIR) is defined elsewhere in the file:
DEPDIR =3D .deps
My best guess at this point is that the "configure" system has somehow
incorrectly defined one or the other of these items in your Makefile
(or a similar problem has happened somewhere else in the file).
So please send me your Makefile and I'll take a look at it, but that's
the kind of problem I recommend you try to track down and fix in the
meantime.
=20
Scott
|