Author: des
Date: Sun Jul 20 14:49:24 2014
New Revision: 268921
URL: http://svnweb.freebsd.org/changeset/base/268921

Log:
  Older versions of flex (like the one used in FreeBSD <= 9) expect the
  output file name to follow the -o flag immediately, with no intervening
  whitespace.
  
  Reported by:  ian@
  MFC after:    1 week

Modified:
  head/share/mk/bsd.dep.mk

Modified: head/share/mk/bsd.dep.mk
==============================================================================
--- head/share/mk/bsd.dep.mk    Sun Jul 20 12:06:52 2014        (r268920)
+++ head/share/mk/bsd.dep.mk    Sun Jul 20 14:49:24 2014        (r268921)
@@ -82,7 +82,7 @@ ${_S:R}.o: ${_S}
 .for _LSRC in ${SRCS:M*.l:N*/*}
 .for _LC in ${_LSRC:R}.c
 ${_LC}: ${_LSRC}
-       ${LEX} ${LFLAGS} -o ${.TARGET} ${.ALLSRC}
+       ${LEX} ${LFLAGS} -o${.TARGET} ${.ALLSRC}
 .if !exists(${.OBJDIR}/${DEPENDFILE})
 ${_LC:R}.o: ${_LC}
 .endif
_______________________________________________
svn-src-head@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to