diff options
author | Carlos Soriano <csoriano1618@gmail.com> | 2018-12-10 14:15:48 +0000 |
---|---|---|
committer | Carlos Soriano <csoriano1618@gmail.com> | 2018-12-10 14:15:48 +0000 |
commit | 85c86bd55d33656d88c655ba55ac72fc0b65cb7b (patch) | |
tree | 6da26eb44ba93a2f2eb374c606681ae53f1b230c /meson.build | |
parent | 5868b7a54f00098c089e92e5d980b1efade98649 (diff) | |
download | nautilus-85c86bd55d33656d88c655ba55ac72fc0b65cb7b.tar.gz |
meson: Handle correctly the Devel suffix
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/meson.build b/meson.build index 74a441f8e..924bfac0d 100644 --- a/meson.build +++ b/meson.build @@ -153,8 +153,7 @@ xml = dependency('libxml-2.0', version: '>= 2.7.8') ################# conf = configuration_data() -if get_option('profile') == 'development' - profile = 'Devel' +if get_option('profile') == 'Devel' name_suffix = ' (Development Snapshot)' elif get_option('profile') != '' profile = get_option('profile') |