[nautilus] meson: move scripts to a directory



commit f72f5f3c9d810b4d6e80926815526eb37a213c40
Author: Ernestas Kulik <ernestask gnome org>
Date:   Tue Mar 7 11:28:45 2017 +0200

    meson: move scripts to a directory
    
    This commit moves scripts used in Meson to a separate directory to
    declutter the root directory.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=779669

 check_libgd.sh => build-scripts/check_libgd.sh     |    0
 .../compile_gschemas.sh                            |    0
 meson.build                                        |    4 ++--
 3 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/check_libgd.sh b/build-scripts/check_libgd.sh
similarity index 100%
rename from check_libgd.sh
rename to build-scripts/check_libgd.sh
diff --git a/compile_gschemas.sh b/build-scripts/compile_gschemas.sh
similarity index 100%
rename from compile_gschemas.sh
rename to build-scripts/compile_gschemas.sh
diff --git a/meson.build b/meson.build
index 086d604..63f13c4 100644
--- a/meson.build
+++ b/meson.build
@@ -103,7 +103,7 @@ subdir ('eel')
 subdir ('libnautilus-extension')
 
 message ('Checking for libgd…')
-run_command ('check_libgd.sh')
+run_command ('build-scripts/check_libgd.sh')
 
 libgd_options = ['static=true',
                  'with-gtk-hacks=true',
@@ -130,4 +130,4 @@ if get_option ('enable-nst-extension')
 endif
 
 # Compile GSettings schemas when installing from source.
-meson.add_install_script ('compile_gschemas.sh')
+meson.add_install_script ('build-scripts/compile_gschemas.sh')


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