Date: Mon, 30 Jul 2012 11:19:48 -0400 From: John Baldwin <jhb@freebsd.org> To: "David E. O'Brien" <obrien@freebsd.org> Cc: svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org Subject: Re: svn commit: r238563 - head/gnu/usr.bin/groff/tmac Message-ID: <201207301119.49002.jhb@freebsd.org> In-Reply-To: <201207180557.q6I5vheM034018@svn.freebsd.org> References: <201207180557.q6I5vheM034018@svn.freebsd.org>
next in thread | previous in thread | raw e-mail | index | archive | help
On Wednesday, July 18, 2012 1:57:43 am David E. O'Brien wrote: > Author: obrien > Date: Wed Jul 18 05:57:42 2012 > New Revision: 238563 > URL: http://svn.freebsd.org/changeset/base/238563 > > Log: > a ";" tells make we want the shell to be used > > Submitted by: Simon Gerraty <sjg@juniper.net> > > Modified: > head/gnu/usr.bin/groff/tmac/Makefile > > Modified: head/gnu/usr.bin/groff/tmac/Makefile > ============================================================================== > --- head/gnu/usr.bin/groff/tmac/Makefile Wed Jul 18 05:50:40 2012 (r238562) > +++ head/gnu/usr.bin/groff/tmac/Makefile Wed Jul 18 05:57:42 2012 (r238563) > @@ -68,7 +68,7 @@ beforeinstall: > cd ${.CURDIR}; \ > ${INSTALL} -o ${TMACOWN} -g ${TMACGRP} -m ${TMACMODE} \ > koi8-r.tmac hyphen.ru ${DESTDIR}${TMACDIR} > - cd ${.OBJDIR} > + cd ${.OBJDIR}; Isn't this a nop now? That is, it changes the working directory in a temporary shell that immediately exits? -- John Baldwin
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201207301119.49002.jhb>