From f63713694c5145bb4e2b048fac883164e41b73a5 Mon Sep 17 00:00:00 2001 From: Norman Feske Date: Wed, 17 Jun 2020 14:15:23 +0200 Subject: [PATCH] api/blit: package arch-specific optimizations The blit API archive missed the CPU-architecture-specific variants of the blit library such that all depot binaries worked with the generic (slow) fallback implementation. This patch adds the missing pieces to the blit API archive. --- repos/os/recipes/api/blit/content.mk | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/repos/os/recipes/api/blit/content.mk b/repos/os/recipes/api/blit/content.mk index 5194779f0..72d2ed4aa 100644 --- a/repos/os/recipes/api/blit/content.mk +++ b/repos/os/recipes/api/blit/content.mk @@ -1,6 +1,14 @@ -content: include/blit src/lib/blit lib/mk/blit.mk LICENSE +MIRROR_FROM_REP_DIR := include/blit \ + src/lib/blit \ + lib/mk/blit.mk \ + lib/mk/spec/arm_64/blit.mk \ + lib/mk/spec/x86_32/blit.mk \ + lib/mk/spec/arm/blit.mk \ + lib/mk/spec/x86_64/blit.mk -src/lib/blit include/blit lib/mk/blit.mk: +content: $(MIRROR_FROM_REP_DIR) + +$(MIRROR_FROM_REP_DIR): $(mirror_from_rep_dir) LICENSE: