diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2013-03-09 21:12:03 +0200 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2013-03-09 21:12:03 +0200 |
commit | 8c237ebfebf4b094bd64d49c94b578de90b40863 (patch) | |
tree | 57ef60bf78997b85c5947410fb1a7bc59cae2304 /environment.py | |
parent | f13f5e2b6ff6c5674b5d3a4b441c14a12222fde0 (diff) | |
download | meson-8c237ebfebf4b094bd64d49c94b578de90b40863.zip meson-8c237ebfebf4b094bd64d49c94b578de90b40863.tar.gz meson-8c237ebfebf4b094bd64d49c94b578de90b40863.tar.bz2 |
Can use external programs.
Diffstat (limited to 'environment.py')
-rwxr-xr-x | environment.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/environment.py b/environment.py index b8fa5ce..28b2221 100755 --- a/environment.py +++ b/environment.py @@ -228,7 +228,6 @@ def is_osx(): return platform.system().lower() == 'darwin' def is_windows(): - print(platform.system().lower()) return platform.system().lower() == 'windows' header_suffixes = ['h', 'hh', 'hpp', 'hxx', 'H'] |