diff options
author | agc <agc> | 2004-01-27 16:11:47 +0000 |
---|---|---|
committer | agc <agc> | 2004-01-27 16:11:47 +0000 |
commit | c664dc44d1371ebeddd736f6687d04e5a6b7a597 (patch) | |
tree | de2800ba0e8810ff95609ed664a91e0571246782 /mk/defs.Linux.mk | |
parent | 47a89a40e2a60370ca3493b3af20199ab5267390 (diff) | |
download | pkgsrc-c664dc44d1371ebeddd736f6687d04e5a6b7a597.tar.gz |
Replace all occurrences of the "MAIL" definition with MAIL_CMD, since
some shells can set MAIL to be the mailbox of the user, and
environment variables will override assignments in make when using
conditional assignments.
Diffstat (limited to 'mk/defs.Linux.mk')
-rw-r--r-- | mk/defs.Linux.mk | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mk/defs.Linux.mk b/mk/defs.Linux.mk index 0ac62b9be06..d9409fd974f 100644 --- a/mk/defs.Linux.mk +++ b/mk/defs.Linux.mk @@ -1,4 +1,4 @@ -# $NetBSD: defs.Linux.mk,v 1.63 2003/12/16 23:07:42 heinz Exp $ +# $NetBSD: defs.Linux.mk,v 1.64 2004/01/27 16:11:47 agc Exp $ # # Variable definitions for the Linux operating system. @@ -75,9 +75,9 @@ LN?= /bin/ln LS?= /bin/ls M4?= /usr/bin/m4 .if exists(/bin/mail) -MAIL?= /bin/mail # RH, Mandrake +MAIL_CMD?= /bin/mail # RH, Mandrake .else -MAIL?= /usr/bin/mail # Debian, Slackware, SuSE +MAIL_CMD?= /usr/bin/mail # Debian, Slackware, SuSE .endif MKDIR?= /bin/mkdir -p MTREE?= ${LOCALBASE}/sbin/mtree |