svn commit: r307754 - head/share/mk

Dimitry Andric dim at FreeBSD.org
Fri Oct 21 21:52:23 UTC 2016


Author: dim
Date: Fri Oct 21 21:52:22 2016
New Revision: 307754
URL: https://svnweb.freebsd.org/changeset/base/307754

Log:
  Fix building of many ports that use make from base, such as devel/apr1,
  after r307676, which added transformation rules for .llo and .bco files.
  
  These suffixes also have to be added the the global .SUFFIXES target,
  otherwise the various suffix-transformation rules would be interpreted
  as literal targets.  E.g.,
  
  .c.bco:
  	... commands ...
  
  would actually to build a file named ".c.bco".

Modified:
  head/share/mk/sys.mk

Modified: head/share/mk/sys.mk
==============================================================================
--- head/share/mk/sys.mk	Fri Oct 21 20:31:52 2016	(r307753)
+++ head/share/mk/sys.mk	Fri Oct 21 21:52:22 2016	(r307754)
@@ -121,7 +121,7 @@ META_MODE?= normal
 .if defined(%POSIX)
 .SUFFIXES:	.o .c .y .l .a .sh .f
 .else
-.SUFFIXES:	.out .a .ln .o .c .cc .cpp .cxx .C .m .F .f .e .r .y .l .S .asm .s .cl .p .h .sh
+.SUFFIXES:	.out .a .ln .o .bco .llo .c .cc .cpp .cxx .C .m .F .f .e .r .y .l .S .asm .s .cl .p .h .sh
 .endif
 
 AR		?=	ar


More information about the svn-src-all mailing list