depends: strip when installing qt

Otherwise we end up with ~1.5GB of binaries (Linux) when DEBUG=1..
This commit is contained in:
fanquake 2025-09-04 11:38:34 +01:00
parent 2562fe1b2b
commit c9d5f211c1
No known key found for this signature in database
GPG Key ID: 2EEB9F5CC09526C1
2 changed files with 2 additions and 2 deletions

View File

@ -147,7 +147,7 @@ define $(package)_build_cmds
endef
define $(package)_stage_cmds
cmake --install . --prefix $($(package)_staging_prefix_dir)
cmake --install . --prefix $($(package)_staging_prefix_dir) --strip
endef
define $(package)_postprocess_cmds

View File

@ -278,7 +278,7 @@ define $(package)_build_cmds
endef
define $(package)_stage_cmds
cmake --install . --prefix $($(package)_staging_prefix_dir)
cmake --install . --prefix $($(package)_staging_prefix_dir) --strip
endef
define $(package)_postprocess_cmds