From 13711128fa6645b3d96a08cf99783231540b75b5 Mon Sep 17 00:00:00 2001 From: Ryan Lucia Date: Sun, 21 Jul 2019 15:08:41 -0400 Subject: [PATCH] meson: remove 'build_' prefix from option --- meson.build | 4 ++-- meson_options.txt | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/meson.build b/meson.build index 71110c16f..1765e6c47 100644 --- a/meson.build +++ b/meson.build @@ -23,8 +23,8 @@ endif conf = configuration_data() conf.set_quoted('P_DATA', dataroot) -if get_option('build_credit') != '' - conf.set_quoted('BUILD_CREDIT', get_option('build_credit')) +if get_option('credit') != '' + conf.set_quoted('BUILD_CREDIT', get_option('credit')) endif conf.set('WITH_UPDATE_CHECKER', get_option('enable_update_checker')) diff --git a/meson_options.txt b/meson_options.txt index e99e25cc8..ea1fe5e30 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -13,7 +13,7 @@ option('uchardet', type: 'feature', description: 'uchardet character encoding de option('system_luajit', type: 'boolean', value: false, description: 'Force using system luajit') -option('build_credit', type: 'string', value: '', description: 'Build credit shown in program title') +option('credit', type: 'string', value: '', description: 'Build credit shown in program title') option('enable_update_checker', type: 'boolean', value: false, description: 'Enable the update checker') option('update_server', type: 'string', value: 'updates.aegisub.org', description: 'Server to use for the update checker')