diff options
author | Piotr Kubaj <pkubaj@FreeBSD.org> | 2022-03-08 01:53:25 +0000 |
---|---|---|
committer | Piotr Kubaj <pkubaj@FreeBSD.org> | 2022-03-08 01:53:25 +0000 |
commit | f4fb0e9fbde80b86f28a232f2d9f9abe803951c1 (patch) | |
tree | a7bc1ee3bed003f336ef69ae990d5fa1834d7521 | |
parent | 392997bb12eab90f4ab4b3e1a4f77191ad6fefba (diff) | |
download | ports-f4fb0e9fbde80b86f28a232f2d9f9abe803951c1.tar.gz ports-f4fb0e9fbde80b86f28a232f2d9f9abe803951c1.zip |
devel/godot*: fix build on riscv64*
Same issue as on powerpc*.
-rw-r--r-- | devel/godot/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/devel/godot/Makefile b/devel/godot/Makefile index dcaaab5ded04..bbeeb1b20f08 100644 --- a/devel/godot/Makefile +++ b/devel/godot/Makefile @@ -86,7 +86,7 @@ PLIST_FILES= bin/${GODOTFILE} .include <bsd.port.options.mk> -.if ${ARCH:Mpowerpc*} +.if ${ARCH:Mpowerpc*} || ${ARCH:Mriscv64*} MAKE_ARGS+= module_embree_enabled=no \ module_raycast_enabled=no \ module_webm_enabled=no |