Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 31 May 2001 21:26:41 -0700
From:      Dima Dorfman <dima@unixfreak.org>
To:        John Hay <jhay@icomtek.csir.co.za>
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 
Message-ID:  <20010601042641.27F053E30@bazooka.unixfreak.org>
In-Reply-To: <200106010419.f514J4S20451@zibbi.icomtek.csir.co.za>; from jhay@icomtek.csir.co.za on "Fri, 1 Jun 2001 06:19:04 %2B0200 (SAT)"

next in thread | previous in thread | raw e-mail | index | archive | help
John Hay <jhay@icomtek.csir.co.za> 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




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20010601042641.27F053E30>