I think I am starting to get some ideas. The missing includes are an essential key to understand the problem. We may need the result of the configuration phase on that machine. The includes statements are present in the following form -include $(patsubst %, %.d, $(PROFS)) with variations, this is just the first one in Makefile.subdirs. The "-" means the process will continue even if it doesn't find a file. The message are generated when you don't find a file to include. Possibilities: *make is too old and doesn't support the syntax in the include line *some variables in the include line are not defined. We need the configuration to get that.
Francois On Fri, 21 Mar 2014 09:26:25 François Bissey wrote: > They are. I just checked on my 10.9.2 machine and I don't have them. That, > to me, suggests a variable in the makefile is not defined and "-include" is > taken as a target which doesn't bod well. > > Francois > > On Thu, 20 Mar 2014 21:23:41 Bill Hart wrote: > > These look suspicous: > > > > "../Makefile.subdirs:41: no file name for `-include'" > > > > But I don't know what they mean. I'm not a Mac expert either. :-( > > > > Bill. > > > > On 20 March 2014 21:18, kcrisman <[email protected]> wrote: > > > On Thursday, March 20, 2014 4:10:40 PM UTC-4, François wrote: > > >> On Thu, 20 Mar 2014 12:46:54 kcrisman wrote: > > >> > On Thursday, March 20, 2014 3:41:27 PM UTC-4, John Cremona wrote: > > >> > > I hope that a Mac expert can help, since I don't use Macs so rely > > >> > > on > > >> > > others to test when I upgrade eclib (which includes mwrank and does > > >> > > indeed depend on Flint). Sorry, > > >> > > > >> > John, that is kind of you to say! I'm pretty sure that you didn't do > > >> > anything wrong... the Flint package seems likelier, since that is > > >> > where > > >> > > >> the > > >> > > >> > symbols sort of exist, I guess. > > >> > > >> That's where I would think the problem is myself. Can you provide the > > >> flint > > >> build log? Actually does flint pass its own test suite if you set > > >> SPKG_CHECK=yes? > > > > > > Good point, I'll try that. I don't expect that to finish before I have > > > to leave work today, though - hopefully tomorrow I can report something. > > > > > > -- > > > You received this message because you are subscribed to the Google > > > Groups > > > "sage-release" group. > > > To unsubscribe from this group and stop receiving emails from it, send > > > an > > > email to [email protected]. > > > To post to this group, send email to [email protected]. > > > Visit this group at http://groups.google.com/group/sage-release. > > > For more options, visit https://groups.google.com/d/optout. -- You received this message because you are subscribed to the Google Groups "sage-release" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/sage-release. For more options, visit https://groups.google.com/d/optout.
