diff options
author | Lukas Rusak <lorusak@gmail.com> | 2020-09-02 20:21:17 -0700 |
---|---|---|
committer | Lukas Rusak <lorusak@gmail.com> | 2020-09-04 11:10:10 -0700 |
commit | 3410119fba8032f45736fc99fe193643efe8a291 (patch) | |
tree | f44df81d2328dc29a512a7af024141ce36d93511 /tools | |
parent | 9f8e670e300cc516ec68c4aa656b1dfb46fe730d (diff) |
tools/depends: add MarkupSafe and Mako to native build
Diffstat (limited to 'tools')
-rw-r--r-- | tools/depends/native/Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tools/depends/native/Makefile b/tools/depends/native/Makefile index 4e012d9b22..46bbd7d8bc 100644 --- a/tools/depends/native/Makefile +++ b/tools/depends/native/Makefile @@ -23,6 +23,10 @@ ifeq ($(TARGET_PLATFORM),wayland) EXPAT = expat endif +ifeq ($(TARGET_PLATFORM),gbm) + NATIVE += MarkupSafe Mako +endif + .PHONY: $(NATIVE) native all: native @@ -46,6 +50,8 @@ python3: $(EXPAT) libffi pkg-config zlib setuptools: python3 wayland-scanner: expat waylandpp-scanner: cmake +MarkupSafe: python3 setuptools +Mako: MarkupSafe #liblzo2 has stale packaged automake files that cause borked host/build detection liblzo2: automake |