diff options
| author | Gregory Neil Shapiro <gshapiro@FreeBSD.org> | 2003-02-08 21:55:31 +0000 |
|---|---|---|
| committer | Gregory Neil Shapiro <gshapiro@FreeBSD.org> | 2003-02-08 21:55:31 +0000 |
| commit | a4d1b9a3c651e23204a6c5235ecf740da4fc0229 (patch) | |
| tree | 6273876417961cb469f26cf4e65561ec8a9bf8e8 /etc | |
| parent | 26085e0d27098ec4c5eac2065626e993eb101177 (diff) | |
Notes
Diffstat (limited to 'etc')
| -rw-r--r-- | etc/mail/Makefile | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/etc/mail/Makefile b/etc/mail/Makefile index e4323b6de38a2..9e378f9930b14 100644 --- a/etc/mail/Makefile +++ b/etc/mail/Makefile @@ -163,9 +163,11 @@ M4FILES!= find ${SENDMAIL_CF_DIR} -type f -name '*.m4' -print # Aliases are handled separately since they normally reside in /etc # and can be rebuild without the help of makemap. # -${SENDMAIL_ALIASES}.db: ${SENDMAIL_ALIASES} - ${SENDMAIL} -bi +.for _f in ${SENDMAIL_ALIASES} +${_f}.db: ${_f} + ${SENDMAIL} -bi -OAliasFile=${.ALLSRC} chmod ${SENDMAIL_MAP_PERMS} ${.TARGET} +.endfor # # ------------------------------------------------------------------------ @@ -203,7 +205,7 @@ install-submit-cf: ${INSTALL_SUBMIT_CF} .endif .endif -aliases: ${SENDMAIL_ALIASES}.db +aliases: ${SENDMAIL_ALIASES:%=%.db} maps: ${SENDMAIL_MAP_OBJ} |
