diff options
author | Nirbheek Chauhan <nirbheek@centricular.com> | 2016-07-13 16:32:08 +0530 |
---|---|---|
committer | Nirbheek Chauhan <nirbheek@centricular.com> | 2016-07-13 16:32:11 +0530 |
commit | f8d75883724e115083bff1befa75def42be282c5 (patch) | |
tree | 0b3df7b22e6c9900b778ddf004ce1998a4635364 | |
parent | cc4826b85f3e3ddf209553f579dd567769ceebfb (diff) | |
download | meson-f8d75883724e115083bff1befa75def42be282c5.zip meson-f8d75883724e115083bff1befa75def42be282c5.tar.gz meson-f8d75883724e115083bff1befa75def42be282c5.tar.bz2 |
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
-rw-r--r-- | test cases/common/60 install script/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test cases/common/60 install script/meson.build b/test cases/common/60 install script/meson.build index cb87e45..6cab840 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) |