diff options
author | martti <martti@pkgsrc.org> | 2004-01-17 06:50:04 +0000 |
---|---|---|
committer | martti <martti@pkgsrc.org> | 2004-01-17 06:50:04 +0000 |
commit | 598a23e5cfef5d9c7457b370a5ae78322751343d (patch) | |
tree | 299fb4b63264d0a133fa20a9eaf30620aae34013 /mail/squirrelmail/Makefile | |
parent | b284bb794dc047280d5a22cf38249c661d3a0e97 (diff) | |
download | pkgsrc-598a23e5cfef5d9c7457b370a5ae78322751343d.tar.gz |
Pass only one argument to ${INSTALL_DATA_DIR}. This fixes installation
problems on Solaris (pkg/24122 by Charlie Allom).
Diffstat (limited to 'mail/squirrelmail/Makefile')
-rw-r--r-- | mail/squirrelmail/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/mail/squirrelmail/Makefile b/mail/squirrelmail/Makefile index 78830b76f87..b8a94677495 100644 --- a/mail/squirrelmail/Makefile +++ b/mail/squirrelmail/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.36 2003/10/08 05:12:08 martti Exp $ +# $NetBSD: Makefile,v 1.37 2004/01/17 06:50:04 martti Exp $ DISTNAME= squirrelmail-1.4.2 CATEGORIES= mail www @@ -58,7 +58,8 @@ pre-install: > ${WRKDIR}/squirrelmail.conf.dist do-install: - ${INSTALL_DATA_DIR} ${EGDIR} ${SMDIR} + ${INSTALL_DATA_DIR} ${EGDIR} + ${INSTALL_DATA_DIR} ${SMDIR} cd ${WRKDIR}; ${INSTALL_DATA} squirrelmail.conf.dist \ ${EGDIR}/squirrelmail.conf ${CP} -R ${WRKSRC}/* ${SMDIR} |