svn commit: r293341 - in head: lib/libstand sys/boot/libstand32

Bryan Drewery bdrewery at FreeBSD.org
Thu Jan 7 19:19:24 UTC 2016


Author: bdrewery
Date: Thu Jan  7 19:19:23 2016
New Revision: 293341
URL: https://svnweb.freebsd.org/changeset/base/293341

Log:
  Don't install /usr/include/stand.h twice after r293040.
  
  Only install it from lib/libstand.
  
  Sponsored by:	EMC / Isilon Storage Division

Modified:
  head/lib/libstand/Makefile
  head/sys/boot/libstand32/Makefile

Modified: head/lib/libstand/Makefile
==============================================================================
--- head/lib/libstand/Makefile	Thu Jan  7 18:50:02 2016	(r293340)
+++ head/lib/libstand/Makefile	Thu Jan  7 19:19:23 2016	(r293341)
@@ -17,7 +17,7 @@ LIBC_SRC=	${LIBSTAND_SRC}/../libc
 
 LIB=		stand
 NO_PIC=
-INCS=		stand.h
+INCS?=		stand.h
 MAN?=		libstand.3
 
 WARNS?=		0

Modified: head/sys/boot/libstand32/Makefile
==============================================================================
--- head/sys/boot/libstand32/Makefile	Thu Jan  7 18:50:02 2016	(r293340)
+++ head/sys/boot/libstand32/Makefile	Thu Jan  7 19:19:23 2016	(r293341)
@@ -10,6 +10,7 @@ LIBSTAND_CPUARCH=${MACHINE_CPUARCH}
 .endif
 LIBC_SRC=	${LIBSTAND_SRC}/../libc
 INTERNALLIB=
+INCS=
 MAN=
 .PATH:	${LIBSTAND_SRC}
 


More information about the svn-src-all mailing list