[gnome-characters] build: Rename project name



commit 6ab7a467e1051c88e8b3990cde69fc6095be8f1a
Author: Iñigo Martínez <inigomartinez gmail com>
Date:   Wed Mar 7 10:44:16 2018 +0100

    build: Rename project name
    
    gnome-characters has been using its namespace as its name which eases
    some building steps in autotools. This might cause some issues with
    meson because it uses this value in a different way for some steps.
    
    However, meson is able to separate these concepts so the project name
    can been changed and use the namespace in different build steps.
    
    The project name has been renamed to `gnome-characters` and the
    namespace is used for the necessary build steps.

 meson.build | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/meson.build b/meson.build
index 938308a..f5f9325 100644
--- a/meson.build
+++ b/meson.build
@@ -1,12 +1,12 @@
 project(
-  'org.gnome.Characters', 'c',
+  'gnome-characters', 'c',
   version: '3.27.92',
   license: 'BSD3',
   default_options: 'buildtype=debugoptimized',
   meson_version: '>= 0.42.0'
 )
 
-characters_name = meson.project_name()
+characters_name = 'org.gnome.Characters'
 characters_background_name = characters_name + '.BackgroundService'
 
 characters_version = meson.project_version()


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]