diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2014-07-22 17:05:46 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2014-07-22 17:05:46 +0000 |
commit | 495cb63db8a231ce0d15d0bcd5ed87cad8b82d45 (patch) | |
tree | 1f3974ff44293723b67cae091213a781f24cc321 /usr.bin/mail | |
parent | 4b9aab361d2da55ed3235cf778902e89031d52e4 (diff) |
Repair two deep targets mistakenly called as afterinstall, rather
than distribution. These would modify files in /etc, part of the base
set, but still... that makes it harder to discern their sets placement.
Diffstat (limited to 'usr.bin/mail')
-rw-r--r-- | usr.bin/mail/Makefile | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/usr.bin/mail/Makefile b/usr.bin/mail/Makefile index 7bbb5306add..9d08f890629 100644 --- a/usr.bin/mail/Makefile +++ b/usr.bin/mail/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.9 2010/01/04 17:50:39 deraadt Exp $ +# $OpenBSD: Makefile,v 1.10 2014/07/22 17:05:45 deraadt Exp $ PROG= mail SRCS= version.c aux.c cmd1.c cmd2.c cmd3.c cmdtab.c collect.c \ @@ -9,12 +9,10 @@ EFILES= mail.rc LINKS= ${BINDIR}/mail ${BINDIR}/Mail ${BINDIR}/mail ${BINDIR}/mailx MLINKS= mail.1 Mail.1 mail.1 mailx.1 -beforeinstall: - cd ${.CURDIR}/misc; ${INSTALL} ${INSTALL_COPY} -o ${BINOWN} -g ${BINGRP} \ - -m 444 ${SFILES} ${DESTDIR}/usr/share/misc - distribution: cd ${.CURDIR}/misc; ${INSTALL} ${INSTALL_COPY} -o root -g wheel \ -m 644 ${EFILES} ${DESTDIR}/etc + cd ${.CURDIR}/misc; ${INSTALL} ${INSTALL_COPY} -o ${BINOWN} -g ${BINGRP} \ + -m 444 ${SFILES} ${DESTDIR}/usr/share/misc .include <bsd.prog.mk> |