diff options
author | grant <grant@pkgsrc.org> | 2005-07-31 03:06:17 +0000 |
---|---|---|
committer | grant <grant@pkgsrc.org> | 2005-07-31 03:06:17 +0000 |
commit | f7ac37d38975dc907edf74d7f3ae09cd0be1f3dd (patch) | |
tree | d2902e4a6067ae01a3227e1183cc342b0f9ae2db /mail/mailsync | |
parent | 0b5d47921b2cf3f22ed68c0b0ad5b501e5e356be (diff) | |
download | pkgsrc-f7ac37d38975dc907edf74d7f3ae09cd0be1f3dd.tar.gz |
- no need to include bsd.prefs.mk
- fix indentation of for loop, and explicit undef not required
Diffstat (limited to 'mail/mailsync')
-rw-r--r-- | mail/mailsync/Makefile | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/mail/mailsync/Makefile b/mail/mailsync/Makefile index 828614511f1..014de3272a6 100644 --- a/mail/mailsync/Makefile +++ b/mail/mailsync/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.19 2005/06/16 06:58:03 jlam Exp $ +# $NetBSD: Makefile,v 1.20 2005/07/31 03:06:17 grant Exp $ # DISTNAME= mailsync_5.2.1.orig @@ -29,8 +29,6 @@ SUBST_MESSAGE.conf= "Fixing configure script." DOCS= COPYING NEWS README THANKS TODO doc/ABSTRACT doc/HACKING -.include "../../mk/bsd.prefs.mk" - INSTALLATION_DIRS= bin man/man1 do-install: @@ -40,10 +38,9 @@ do-install: ${INSTALL_DATA} ${WRKSRC}/doc/examples/mailsync \ ${PREFIX}/share/examples/mailsync/dot.mailsync ${INSTALL_MAN} ${WRKSRC}/doc/mailsync.1 ${PREFIX}/man/man1 -. for d in ${DOCS} - ${INSTALL_DATA} ${WRKSRC}/${d} ${PREFIX}/share/doc/mailsync -. endfor -. undef d +.for d in ${DOCS} + ${INSTALL_DATA} ${WRKSRC}/${d} ${PREFIX}/share/doc/mailsync +.endfor .include "../../security/openssl/buildlink3.mk" .include "../../mail/imap-uw/buildlink3.mk" |