Correctly package wasm archives.

With commit 6181d7bb, we have changed where archives are written.
We must addapt our packaging script.

Fix #556
This commit is contained in:
Matthieu Gautier 2023-03-20 19:32:41 +01:00
parent 7b776893fd
commit 424d426a0e
1 changed files with 1 additions and 1 deletions

View File

@ -94,7 +94,7 @@ EXPORT_FILES = {
INSTALL_DIR, INSTALL_DIR,
( (
# We need to package all dependencies (`*.a`) on wasm # We need to package all dependencies (`*.a`) on wasm
"lib/*/libzim.a" if PLATFORM_TARGET != "wasm" else "lib/*/*.a", "lib/*/libzim.a" if PLATFORM_TARGET != "wasm" else "lib/*.a",
"lib/*/libzim.so", "lib/*/libzim.so",
"lib/*/libzim.so.{version}".format( "lib/*/libzim.so.{version}".format(
version=main_project_versions["libzim"] version=main_project_versions["libzim"]