svn commit: r270409 - stable/9/share/mk

Dag-Erling Smørgrav des at FreeBSD.org
Sat Aug 23 14:42:53 UTC 2014


Author: des
Date: Sat Aug 23 14:42:53 2014
New Revision: 270409
URL: http://svnweb.freebsd.org/changeset/base/270409

Log:
  MFH (r268877, r268921): use -o instead of a redirect.

Modified:
  stable/9/share/mk/bsd.dep.mk
Directory Properties:
  stable/9/share/mk/   (props changed)

Modified: stable/9/share/mk/bsd.dep.mk
==============================================================================
--- stable/9/share/mk/bsd.dep.mk	Sat Aug 23 14:42:49 2014	(r270408)
+++ stable/9/share/mk/bsd.dep.mk	Sat Aug 23 14:42:53 2014	(r270409)
@@ -81,7 +81,7 @@ ${_S:R}.o: ${_S}
 .for _LSRC in ${SRCS:M*.l:N*/*}
 .for _LC in ${_LSRC:R}.c
 ${_LC}: ${_LSRC}
-	${LEX} -t ${LFLAGS} ${.ALLSRC} > ${.TARGET}
+	${LEX} ${LFLAGS} -o${.TARGET} ${.ALLSRC}
 .if !exists(${.OBJDIR}/${DEPENDFILE})
 ${_LC:R}.o: ${_LC}
 .endif


More information about the svn-src-stable-9 mailing list