On Thu, Nov 28, 2013 at 10:09:29AM -0800, [email protected] wrote:
> cat /usr/local/etc/postfix/Makefile
> MTAADMIN=hostmaster
>
> all: virtual.cdb generic.cdb
>
> generic: Makefile
> @echo Creating $@
> @rm -f [email protected]
> @printf '%s\t%s+root=%s\n' root $MTAADMIN `uname -n` >
> [email protected]
> @mv [email protected] 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.