summaryrefslogtreecommitdiff
path: root/runner
diff options
context:
space:
mode:
authorSimon Ser <simon.ser@intel.com>2019-07-05 16:42:23 +0300
committerSimon Ser <simon.ser@intel.com>2019-07-16 11:58:34 +0300
commit0ea68a1efbfcc4961f2f816ab59e4ad8136c6250 (patch)
treea8b7d4d42f8e03ac978e6148a30e13c78db9bc41 /runner
parentb9cac102542f2fbbbed9e5aa2b1ac04ec3795bc6 (diff)
build: rename Meson options
Meson emits a warning because we use options beginning with "build_": DEPRECATION: Option uses prefix "build_", which is reserved for Meson. This will become an error in the future. Rename our options so that we don't use the Meson-reserved prefix. Signed-off-by: Simon Ser <simon.ser@intel.com> Reviewed-by: Arkadiusz Hiler <arkadiusz.hiler@intel.com>
Diffstat (limited to 'runner')
-rw-r--r--runner/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/runner/meson.build b/runner/meson.build
index 4eff193a..86521f94 100644
--- a/runner/meson.build
+++ b/runner/meson.build
@@ -1,4 +1,4 @@
-build_runner = get_option('build_runner')
+build_runner = get_option('runner')
runnerlib_sources = [ 'settings.c',
'job_list.c',