summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilip Withnall <withnall@endlessm.com>2019-08-21 10:35:52 +0300
committerPhilip Withnall <withnall@endlessm.com>2019-08-21 10:35:52 +0300
commitcf208a8b30cf12bf89a3fced77d81876334979c2 (patch)
tree0c9ad34c0b69e2b3e908810cda9f7ecd91a4f389
parent4a8b5635bfd2bb1f7ac188b87fb9e8eb967e79d0 (diff)
downloadlibgdata-cf208a8b30cf12bf89a3fced77d81876334979c2.tar.gz
build: Improve spelling of a meson variable
This introduces no functional changes; just makes the build files a little simpler to understand. Signed-off-by: Philip Withnall <withnall@endlessm.com>
-rw-r--r--demos/meson.build4
1 files changed, 2 insertions, 2 deletions
diff --git a/demos/meson.build b/demos/meson.build
index 7d2e52e7..a8f4db0b 100644
--- a/demos/meson.build
+++ b/demos/meson.build
@@ -1,4 +1,4 @@
-demos_cargs = [
+demos_c_args = [
'-DLIBGDATA_DISABLE_DEPRECATED',
]
@@ -25,7 +25,7 @@ foreach demo: demos
executable(
demo[1],
- c_args: demos_cargs + ['-DG_LOG_DOMAIN="@0@"'.format(demo[1])],
+ c_args: demos_c_args + ['-DG_LOG_DOMAIN="@0@"'.format(demo[1])],
include_directories: top_inc_dir,
kwargs: kwargs,
)