Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 8 Dec 2017 22:19:41 +0000 (UTC)
From:      Warner Losh <imp@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r326720 - in head/stand: . ficl
Message-ID:  <201712082219.vB8MJfq2055112@repo.freebsd.org>

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



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