diff options
author | Lewis Cook <lcook@FreeBSD.org> | 2021-07-11 18:47:24 +0100 |
---|---|---|
committer | Lewis Cook <lcook@FreeBSD.org> | 2021-07-11 18:55:24 +0100 |
commit | c391e5fd397c3e9b83923777417934fd5e5c3202 (patch) | |
tree | e94244b6972328aebdeceedb5f492b5a909d8b43 /misc | |
parent | net-im/tut: Update to 0.0.20 (diff) |
misc/xplr: Unbreak build on FreeBSD {11,12,13}
Add a binary alias for gmake so that LuaJIT
compiles without spewing errors.
Reported-by: pkg-fallout
Diffstat (limited to 'misc')
-rw-r--r-- | misc/xplr/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/misc/xplr/Makefile b/misc/xplr/Makefile index aebad6ef0539..2355a074c27c 100644 --- a/misc/xplr/Makefile +++ b/misc/xplr/Makefile @@ -1,7 +1,7 @@ PORTNAME= xplr DISTVERSIONPREFIX= v DISTVERSION= 0.14.3 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= misc MAINTAINER= lcook@FreeBSD.org @@ -138,6 +138,8 @@ CARGO_CRATES= ansi-to-tui-0.3.0 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ yaml-rust-0.4.5 +BINARY_ALIAS= make=gmake + PORTDOCS= CODE_OF_CONDUCT.md README.md RELEASE.md _EXAMPLES= ${WRKSRC}/src/init.lua PORTEXAMPLES= ${_EXAMPLES:T} |