Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 21 Oct 2016 21:52:22 +0000 (UTC)
From:      Dimitry Andric <dim@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r307754 - head/share/mk
Message-ID:  <201610212152.u9LLqMGf089305@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



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