svn commit: r326720 - in head/stand: . ficl

Warner Losh imp at FreeBSD.org
Fri Dec 8 22:19:42 UTC 2017


Author: imp
Date: Fri Dec  8 22:19:41 2017
New Revision: 326720
URL: https://svnweb.freebsd.org/changeset/base/326720

Log:
  This path belongs in ficl/Makefile, not the common defines for users
  of ficl.
  
  Sponsored by: Netflix

Modified:
  head/stand/ficl.mk
  head/stand/ficl/Makefile

Modified: head/stand/ficl.mk
==============================================================================
--- head/stand/ficl.mk	Fri Dec  8 22:06:18 2017	(r326719)
+++ head/stand/ficl.mk	Fri Dec  8 22:19:41 2017	(r326720)
@@ -12,8 +12,6 @@ FICL_CPUARCH=	mips64
 FICL_CPUARCH=	${MACHINE_CPUARCH}
 .endif
 
-.PATH: ${FICLSRC} ${FICLSRC}/${FICL_CPUARCH}
-
 .if ${MACHINE_CPUARCH} == "amd64" && ${DO32:U0} == 0
 CFLAGS+=	-fPIC
 .endif

Modified: head/stand/ficl/Makefile
==============================================================================
--- head/stand/ficl/Makefile	Fri Dec  8 22:06:18 2017	(r326719)
+++ head/stand/ficl/Makefile	Fri Dec  8 22:19:41 2017	(r326720)
@@ -4,6 +4,8 @@
 .include <bsd.init.mk>
 .include "${BOOTSRC}/ficl.mk"
 
+.PATH: ${FICLSRC} ${FICLSRC}/${FICL_CPUARCH}
+
 BASE_SRCS=	dict.c ficl.c fileaccess.c float.c loader.c math64.c \
 		prefix.c search.c stack.c tools.c vm.c words.c
 


More information about the svn-src-all mailing list