diff options
author | martti <martti> | 2004-01-17 06:50:04 +0000 |
---|---|---|
committer | martti <martti> | 2004-01-17 06:50:04 +0000 |
commit | a1ae6962762b16d9c2a7adb5e89911b4b02edad3 (patch) | |
tree | 299fb4b63264d0a133fa20a9eaf30620aae34013 /mail | |
parent | 4122eed28a01e0929a5cf130184017fb632b84fe (diff) | |
download | pkgsrc-a1ae6962762b16d9c2a7adb5e89911b4b02edad3.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')
-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} |