svn commit: r552678 - head/www/nift

Piotr Kubaj pkubaj at FreeBSD.org
Sun Oct 18 19:25:27 UTC 2020


Author: pkubaj
Date: Sun Oct 18 19:25:26 2020
New Revision: 552678
URL: https://svnweb.freebsd.org/changeset/ports/552678

Log:
  www/nift: fix build on powerpc64le
  
  Add the same exclude that exists for powerpc64.

Modified:
  head/www/nift/Makefile

Modified: head/www/nift/Makefile
==============================================================================
--- head/www/nift/Makefile	Sun Oct 18 18:51:46 2020	(r552677)
+++ head/www/nift/Makefile	Sun Oct 18 19:25:26 2020	(r552678)
@@ -23,7 +23,9 @@ OPTIONS_SINGLE_LUA=	BUNDLED_LUAJIT BUNDLED_LUA53 PORTS
 
 OPTIONS_DEFAULT=	BUNDLED_LUAJIT
 OPTIONS_DEFAULT_powerpc64=	BUNDLED_LUA53
+OPTIONS_DEFAULT_powerpc64le=	BUNDLED_LUA53
 OPTIONS_EXCLUDE_powerpc64=	BUNDLED_LUAJIT
+OPTIONS_EXCLUDE_powerpc64le=	BUNDLED_LUAJIT
 
 BUNDLED_LUAJIT_DESC=	Use the bundled LuaJIT
 BUNDLED_LUA53_DESC=	Use the bundled Lua 5.3


More information about the svn-ports-all mailing list