diff options
author | jbeich <jbeich@FreeBSD.org> | 2017-12-30 16:51:33 +0800 |
---|---|---|
committer | jbeich <jbeich@FreeBSD.org> | 2017-12-30 16:51:33 +0800 |
commit | 72f34c24b658f748d796f48151caf3546d57e1c5 (patch) | |
tree | 6059d6713ae9a9671bfa940db087aa17d64f43c1 /graphics | |
parent | 67f4c0c670718dd6c9656c46d268a54b79021c2d (diff) | |
download | freebsd-ports-gnome-72f34c24b658f748d796f48151caf3546d57e1c5.tar.gz freebsd-ports-gnome-72f34c24b658f748d796f48151caf3546d57e1c5.tar.zst freebsd-ports-gnome-72f34c24b658f748d796f48151caf3546d57e1c5.zip |
graphics/mesa-dri: unbreak on powerpc* + clang after r457430
python2.7 ./radv_entrypoints_gen.py \
--xml ../../../src/vulkan/registry/vk.xml --outdir .
Traceback (most recent call last):
File "./radv_entrypoints_gen.py", line 30, in <module>
from mako.template import Template
ImportError: No module named mako.template
PR: 221540
Reported by: Mark Millard (via ports@ list)
Approved by: portmgr blanket
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/mesa-dri/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/graphics/mesa-dri/Makefile b/graphics/mesa-dri/Makefile index b9621382eb6c..8bf9b8b26fe2 100644 --- a/graphics/mesa-dri/Makefile +++ b/graphics/mesa-dri/Makefile @@ -63,8 +63,11 @@ EXTRA_PATCHES+= ${PATCHDIR}/extra-src_gallium_drivers_vc4_Makefile.in . endif .endif -.if ${VULKAN_DRIVERS:MINTEL} +.if ${VULKAN_DRIVERS} BUILD_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}mako>0:textproc/py-mako@${PY_FLAVOR} +.endif + +.if ${VULKAN_DRIVERS:MINTEL} . if ${/usr/bin/ld:L:tA} != "/usr/bin/ld.lld" # --build-id isn't supported by old GNU ld.bfd in base USE_BINUTILS= yes |