From 723072b86a544897930d0910356a6f1975220c00 Mon Sep 17 00:00:00 2001 From: Christian Hergert Date: Thu, 21 Jul 2022 18:58:23 -0700 Subject: [PATCH] build: default -Dagent=false That way we don't break any CI out there which hasn't disabled it. --- meson_options.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson_options.txt b/meson_options.txt index 8d9df543..6644185d 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -47,4 +47,4 @@ option('examples', type: 'boolean') # Optionally build the sysprof-agent tool to allow profiling inside of # containers from external system -option('agent', type: 'boolean', description: 'Build the sysprof-agent utility') +option('agent', type: 'boolean', value: false, description: 'Build the sysprof-agent utility')