diff options
author | dholland <dholland@pkgsrc.org> | 2016-09-11 03:47:49 +0000 |
---|---|---|
committer | dholland <dholland@pkgsrc.org> | 2016-09-11 03:47:49 +0000 |
commit | 69703968d13352c6acb568d6c6ec6d7f3cdb8530 (patch) | |
tree | e5e81dc22d74cdb5297da17a4fdec3ba551b91f3 /chat | |
parent | 9bf2e85a9e6aa80e4e1bfea8d606340de8591047 (diff) | |
download | pkgsrc-69703968d13352c6acb568d6c6ec6d7f3cdb8530.tar.gz |
Fix CONF_FILES_PERMS; avoids build failure with "can't shift that many"
Diffstat (limited to 'chat')
-rw-r--r-- | chat/inspircd/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chat/inspircd/Makefile b/chat/inspircd/Makefile index a3651701b6b..88b41dca0c0 100644 --- a/chat/inspircd/Makefile +++ b/chat/inspircd/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.47 2016/07/10 09:52:21 rillig Exp $ +# $NetBSD: Makefile,v 1.48 2016/09/11 03:47:49 dholland Exp $ # DISTNAME= InspIRCd-1.1.23 @@ -141,7 +141,7 @@ post-build: INSTALLATION_DIRS+= bin ${EGDIR}/aliases ${EGDIR}/sql CONF_FILES_PERMS+= /dev/null ${VARBASE}/log/inspircd.log \ - ${INSPIRCD_USER}:${INSPIRCD_GROUP} 0640 + ${INSPIRCD_USER} ${INSPIRCD_GROUP} 0640 post-install: ${INSTALL_DATA} ${WRKSRC}/conf/inspircd.* ${DESTDIR}${EGDIR} |