diff options
author | hans <hans@pkgsrc.org> | 2011-10-12 17:20:21 +0000 |
---|---|---|
committer | hans <hans@pkgsrc.org> | 2011-10-12 17:20:21 +0000 |
commit | 512aa94846894a4c79f376e0daed01c13f2268f7 (patch) | |
tree | f13379d981371f0b9bcc619c44f679cc9301646d /mail | |
parent | 7a17313cb06e48548e1134fb0b496a0f79f9cfb3 (diff) | |
download | pkgsrc-512aa94846894a4c79f376e0daed01c13f2268f7.tar.gz |
There is no need to do the Darwin-specific post-extract stuff on
anything but Darwin.
Diffstat (limited to 'mail')
-rw-r--r-- | mail/qmail/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/mail/qmail/Makefile b/mail/qmail/Makefile index 432bfd99175..5ef80c2615a 100644 --- a/mail/qmail/Makefile +++ b/mail/qmail/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.61 2011/09/28 06:36:57 joerg Exp $ +# $NetBSD: Makefile,v 1.62 2011/10/12 17:20:21 hans Exp $ # DISTNAME= ${PKGNAME_NOREV} @@ -121,9 +121,11 @@ DARWINSUFX= # empty post-extract: ${CP} ${FILESDIR}/README.pkgsrc ${WRKSRC} +.if ${OPSYS} == "Darwin" . for i in INSTALL SENDMAIL mv ${WRKSRC}/${i} ${WRKSRC}/${i}${DARWINSUFX} . endfor +.endif pre-install: . if ${USE_DESTDIR} != "no" |