diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2013-03-03 16:09:49 +0200 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2013-03-03 16:09:49 +0200 |
commit | d663abd7e78e25e83b755a4ff69246406f417839 (patch) | |
tree | 4d950881b061966d5de6ca6e6c8a8c14100fa7d5 | |
parent | 273e9c73eb630a688f62925463dc8f39c88fd6d0 (diff) | |
download | meson-d663abd7e78e25e83b755a4ff69246406f417839.zip meson-d663abd7e78e25e83b755a4ff69246406f417839.tar.gz meson-d663abd7e78e25e83b755a4ff69246406f417839.tar.bz2 |
Ooops.
-rwxr-xr-x | meson_install.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/meson_install.py b/meson_install.py index 0218664..5baffe5 100755 --- a/meson_install.py +++ b/meson_install.py @@ -79,7 +79,9 @@ def install_headers(d): def is_elf_platform(): platname = platform.system().lower() - + if platname == 'darwin' or platname == 'windows': + return False + return True def install_targets(d): for t in d.targets: |