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 '${.OBJDIR}' to get the recursively-expanded value of .OBJDIR. ${MAKE} -V .OBJDIR would print the unexpanded value.
--apb (Alan Barrett)