summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorErnestas Kulik <ernestask@gnome.org>2017-03-07 11:28:45 +0200
committerErnestas Kulik <ernestask@gnome.org>2017-03-08 17:52:01 +0200
commitf72f5f3c9d810b4d6e80926815526eb37a213c40 (patch)
tree7739de8deaa686f1016dcbdc83a2efc31dbf62f6
parent9419c26876daa3a35c9366b892c40efbbc40e67d (diff)
downloadnautilus-f72f5f3c9d810b4d6e80926815526eb37a213c40.tar.gz
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
-rwxr-xr-xbuild-scripts/check_libgd.sh (renamed from check_libgd.sh)0
-rwxr-xr-xbuild-scripts/compile_gschemas.sh (renamed from compile_gschemas.sh)0
-rw-r--r--meson.build4
3 files changed, 2 insertions, 2 deletions
diff --git a/check_libgd.sh b/build-scripts/check_libgd.sh
index f1fabc0c3..f1fabc0c3 100755
--- a/check_libgd.sh
+++ b/build-scripts/check_libgd.sh
diff --git a/compile_gschemas.sh b/build-scripts/compile_gschemas.sh
index 01010099d..01010099d 100755
--- a/compile_gschemas.sh
+++ b/build-scripts/compile_gschemas.sh
diff --git a/meson.build b/meson.build
index 086d60443..63f13c451 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')