Re: CVS commit: othersrc/external/bsd/multigest

2014-10-29 Thread Alan Barrett
On Tue, 28 Oct 2014, Alistair Crooks wrote: +.ifndef PRINTOBJDIR +PRINTOBJDIR=${MAKE} -V .OBJDIR +.endif At least for NetBSD's make(1), you need ${MAKE} -V '${.OBJDIR}' to get the recursively-expanded value of .OBJDIR. ${MAKE} -V .OBJDIR would print the unexpanded value. Oh, you'd better

Re: CVS commit: othersrc/external/bsd/multigest

2014-10-28 Thread Alan Barrett
On Tue, 28 Oct 2014, Alistair G. Crooks wrote: Modified Files: othersrc/external/bsd/multigest/bin: Makefile othersrc/external/bsd/multigest/lib: Makefile +.ifndef PRINTOBJDIR +PRINTOBJDIR=${MAKE} -V .OBJDIR +.endif At least for NetBSD's make(1), you need ${MAKE} -V

Re: CVS commit: othersrc/external/bsd/multigest

2014-10-28 Thread Alistair Crooks
On Tue, Oct 28, 2014 at 09:46:26AM -0400, Alan Barrett wrote: On Tue, 28 Oct 2014, Alistair G. Crooks wrote: Modified Files: othersrc/external/bsd/multigest/bin: Makefile othersrc/external/bsd/multigest/lib: Makefile +.ifndef PRINTOBJDIR +PRINTOBJDIR=${MAKE} -V .OBJDIR +.endif