svn commit: r307892 - head/lib/libc/powerpc/gen

Justin Hibbits jhibbits at FreeBSD.org
Tue Oct 25 01:32:36 UTC 2016


Author: jhibbits
Date: Tue Oct 25 01:32:35 2016
New Revision: 307892
URL: https://svnweb.freebsd.org/changeset/base/307892

Log:
  Fix a typo which broke the build for powerpc.
  
  It's spelled LIBC_SRCTOP not LIBC_SRC.
  
  Pointy-hat to:	jhibbits
  Reported by:	kib

Modified:
  head/lib/libc/powerpc/gen/Makefile.inc

Modified: head/lib/libc/powerpc/gen/Makefile.inc
==============================================================================
--- head/lib/libc/powerpc/gen/Makefile.inc	Tue Oct 25 00:59:23 2016	(r307891)
+++ head/lib/libc/powerpc/gen/Makefile.inc	Tue Oct 25 01:32:35 2016	(r307892)
@@ -1,6 +1,6 @@
 # $FreeBSD$
 
-.include "${LIBC_SRC}/powerpc/gen/Makefile.common"
+.include "${LIBC_SRCTOP}/powerpc/gen/Makefile.common"
 
 SRCS += fabs.S flt_rounds.c fpgetmask.c fpgetround.c \
 	fpgetsticky.c fpsetmask.c fpsetround.c \


More information about the svn-src-all mailing list