From owner-cvs-all Thu May 31 21:26:46 2001 Delivered-To: cvs-all@freebsd.org Received: from bazooka.unixfreak.org (bazooka.unixfreak.org [63.198.170.138]) by hub.freebsd.org (Postfix) with ESMTP id E61AF37B423; Thu, 31 May 2001 21:26:41 -0700 (PDT) (envelope-from dima@unixfreak.org) Received: from hornet.unixfreak.org (hornet [63.198.170.140]) by bazooka.unixfreak.org (Postfix) with ESMTP id 27F053E30; Thu, 31 May 2001 21:26:41 -0700 (PDT) To: John Hay Cc: obrien@FreeBSD.org (David E. O'Brien), cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, kuriyama@freebsd.org Subject: Re: cvs commit: src/usr.sbin/chown Makefile In-Reply-To: <200106010419.f514J4S20451@zibbi.icomtek.csir.co.za>; from jhay@icomtek.csir.co.za on "Fri, 1 Jun 2001 06:19:04 +0200 (SAT)" Date: Thu, 31 May 2001 21:26:41 -0700 From: Dima Dorfman Message-Id: <20010601042641.27F053E30@bazooka.unixfreak.org> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG John Hay writes: > > obrien 2001/05/31 12:30:19 PDT > > > > Modified files: > > usr.sbin/chown Makefile > > Log: > > Starting with 5.0-R, do not support `.' as a owner / group delimiter. > > > > It looks like it is still used because a make release now died when > building some of the ports that is used by the docs: I've attached a patch to fix this particular case. I think we should leave the change in and fix problems as they arise. We're going to have to sooner or later.. Dima Dorfman dima@unixfreak.org Index: Makefile =================================================================== RCS file: /stl/src/FreeBSD/ports/textproc/iso8879/Makefile,v retrieving revision 1.16 diff -u -r1.16 Makefile --- Makefile 2001/01/16 17:32:45 1.16 +++ Makefile 2001/06/01 04:25:28 @@ -32,7 +32,7 @@ @unzip -a -q -o ${DISTDIR}/${DISTFILES} -d ${INSTDIR} @${INSTALL_DATA} ${FILESDIR}/catalog ${INSTDIR}/catalog @${CHMOD} ${SHAREMODE} ${INSTDIR}/* - @${CHOWN} -R ${SHAREOWN}.${SHAREGRP} ${INSTDIR} + @${CHOWN} -R ${SHAREOWN}:${SHAREGRP} ${INSTDIR} post-install: @${MKCATALOG} -q install ${PORTNAME} To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message