From fa107031249e7a45c2b7187e85ab5e06ca5e4a9d Mon Sep 17 00:00:00 2001 From: kalmiya Date: Wed, 29 Mar 2017 22:37:51 +0200 Subject: fix "Meson encountered an error in file meson.build, line 19, column … (#1536) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit fix "Meson encountered an error in file meson.build, line 19, column 8: Unknown method "set_install_script" in object." --- manual tests/4 standalone binaries/meson.build | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'manual tests') diff --git a/manual tests/4 standalone binaries/meson.build b/manual tests/4 standalone binaries/meson.build index baae796ac..ad6645f5b 100644 --- a/manual tests/4 standalone binaries/meson.build +++ b/manual tests/4 standalone binaries/meson.build @@ -16,12 +16,12 @@ if host_machine.system() == 'darwin' install_data('Info.plist', install_dir : 'Contents') - meson.set_install_script('osx_bundler.sh') + meson.add_install_script('osx_bundler.sh') endif if host_machine.system() == 'linux' install_data('myapp.sh', install_dir : '.') - meson.set_install_script('linux_bundler.sh') + meson.add_install_script('linux_bundler.sh') endif extra_link_args = [] -- cgit v1.2.3