[gnome-builder] settings: check for ctags last



commit 676753cf1e30aa654a6ea2e3a1e18dc9f5f48747
Author: Christian Hergert <chergert redhat com>
Date:   Wed Jan 24 16:12:01 2018 -0800

    settings: check for ctags last
    
    This ensures we find the alternate names first before "ctags" which may be
    a more legacy form of the binary.
    
    Should fix an issue with FreeBSD running ctags instead of exctags.
    
    #361

 data/gsettings/meson.build | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/data/gsettings/meson.build b/data/gsettings/meson.build
index 482f69949..639d29ea6 100644
--- a/data/gsettings/meson.build
+++ b/data/gsettings/meson.build
@@ -3,10 +3,10 @@ schema_dir = join_paths(get_option('datadir'), 'glib-2.0', 'schemas')
 # Perhaps this should be moved to the plugin
 ctags_path = 'ctags'
 ctags = find_program(
-  'ctags',
   'ctags-exuberant',
   'exctags',
   'ectags',
+  'ctags',
   required: false
 )
 if ctags.found()


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