From f8d75883724e115083bff1befa75def42be282c5 Mon Sep 17 00:00:00 2001 From: Nirbheek Chauhan Date: Wed, 13 Jul 2016 16:32:08 +0530 Subject: [PATCH] test 60 install script: Don't install any files when using msvc The test is stricter now and our install script doesn't work without bash --- test cases/common/60 install script/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test cases/common/60 install script/meson.build b/test cases/common/60 install script/meson.build index cb87e450a..6cab8404f 100644 --- a/test cases/common/60 install script/meson.build +++ b/test cases/common/60 install script/meson.build @@ -4,5 +4,5 @@ if meson.get_compiler('c').get_id() == 'msvc' install_data('no-installed-files', install_dir : '') else meson.add_install_script('myinstall.sh') + executable('prog', 'prog.c', install : true) endif -executable('prog', 'prog.c', install : true)