From 4f93ede6fa08b2572eaf05f14621bedf3958ea27 Mon Sep 17 00:00:00 2001 From: Christian Hergert Date: Thu, 28 Sep 2017 16:27:26 -0700 Subject: [PATCH] build: move script to meson subdir This makes things more like various other projects in GNOME. --- build-aux/{meson_post_install.sh => meson/post_install.sh} | 0 meson.build | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename build-aux/{meson_post_install.sh => meson/post_install.sh} (100%) diff --git a/build-aux/meson_post_install.sh b/build-aux/meson/post_install.sh similarity index 100% rename from build-aux/meson_post_install.sh rename to build-aux/meson/post_install.sh diff --git a/meson.build b/meson.build index 4e6f3ceb..50fb40ba 100644 --- a/meson.build +++ b/meson.build @@ -119,4 +119,4 @@ subdir('data') subdir('help') subdir('po') -meson.add_install_script('build-aux/meson_post_install.sh') +meson.add_install_script('build-aux/meson/post_install.sh')