diff options
author | wiz <wiz@pkgsrc.org> | 2004-04-04 10:40:19 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2004-04-04 10:40:19 +0000 |
commit | 76c76a00e00d0a54ab8b3e3e2b497e8e9ebb1406 (patch) | |
tree | 37b92a9c55f2b78da847c1f699dee14169793676 /www | |
parent | 6aa1bcb3c9fafbaf8fdb2729dcea41dd7d49953a (diff) | |
download | pkgsrc-76c76a00e00d0a54ab8b3e3e2b497e8e9ebb1406.tar.gz |
Call INSTALL_DATA_DIR multiple times with only one argument,
instead of once with three, since Solaris' install -d doesn't handle that.
Diffstat (limited to 'www')
-rw-r--r-- | www/horde/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/www/horde/Makefile b/www/horde/Makefile index dba4b86df61..b4006bda864 100644 --- a/www/horde/Makefile +++ b/www/horde/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.26 2003/09/14 21:26:40 bouyer Exp $ +# $NetBSD: Makefile,v 1.27 2004/04/04 10:40:19 wiz Exp $ DISTNAME= horde-2.2.4 CATEGORIES= www @@ -50,7 +50,9 @@ pre-install: ${FILESDIR}/horde.conf.dist > ${WRKDIR}/horde.conf.dist do-install: - ${INSTALL_DATA_DIR} ${DOCDIR} ${EGDIR} ${HORDEDIR} + ${INSTALL_DATA_DIR} ${DOCDIR} + ${INSTALL_DATA_DIR} ${EGDIR} + ${INSTALL_DATA_DIR} ${HORDEDIR} cd ${WRKDIR}; ${INSTALL_DATA} horde.conf.dist ${EGDIR}/horde.conf cd ${WRKSRC}; ${INSTALL_DATA} COPYING README docs/* ${DOCDIR} cd ${WRKSRC}; ${CP} -R graphics lib locale po scripts templates util ${HORDEDIR} |