mirror of
https://git.proxmox.com/git/fwupd
synced 2025-06-11 02:48:22 +00:00

This allows us to disable it automatically on architectures that aren't supported and OSes that aren't supported. Link: https://bugs.launchpad.net/ubuntu/+source/fwupd/+bug/1987067
16 lines
314 B
Bash
Executable File
16 lines
314 B
Bash
Executable File
#!/bin/sh
|
|
|
|
meson ../ \
|
|
-Dauto_features=disabled \
|
|
-Dbash_completion=false \
|
|
-Dcompat_cli=false \
|
|
-Dfish_completion=false \
|
|
-Dfirmware-packager=false \
|
|
-Dhsi=disabled \
|
|
-Dman=false \
|
|
-Dmetainfo=false \
|
|
-Dtests=false \
|
|
-Dudevdir=/tmp \
|
|
-Dsystemd_root_prefix=/tmp \
|
|
$@
|