On Thu, Nov 28, 2013 at 10:09:29AM -0800, a...@operamail.com wrote: > cat /usr/local/etc/postfix/Makefile > MTAADMIN=hostmaster > > all: virtual.cdb generic.cdb > > generic: Makefile > @echo Creating $@ > @rm -f $@.tmp > @printf '%s\t%s+root=%s\n' root $MTAADMIN `uname -n` > > $@.tmp > @mv $@.tmp generic > > %.cdb: % > postmap cdb:$<
Thanks for the bug report. That $MTAADMIN in the Makefile needs to be either $(MTAADMIN) or ${MTAADMIN} (the make(1) program does not care, a matter of taste). -- Viktor.