diff options
author | Matthias Klumpp <matthias@tenstral.net> | 2016-08-21 01:39:48 +0200 |
---|---|---|
committer | Matthias Klumpp <matthias@tenstral.net> | 2016-08-21 01:39:48 +0200 |
commit | b80bdf65dfaba5fa7546bddd980bbbea962b7235 (patch) | |
tree | 15bca1a2f348275734be39c520064e2c081696e1 /mesonbuild/environment.py | |
parent | d767d8ca3993f3cee47840542f35978f43d3a8ff (diff) | |
download | meson-b80bdf65dfaba5fa7546bddd980bbbea962b7235.zip meson-b80bdf65dfaba5fa7546bddd980bbbea962b7235.tar.gz meson-b80bdf65dfaba5fa7546bddd980bbbea962b7235.tar.bz2 |
Simplify D compiler argument translation
Diffstat (limited to 'mesonbuild/environment.py')
-rw-r--r-- | mesonbuild/environment.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/mesonbuild/environment.py b/mesonbuild/environment.py index a4d053e..b040aa4 100644 --- a/mesonbuild/environment.py +++ b/mesonbuild/environment.py @@ -592,7 +592,6 @@ class Environment(): exelist = os.environ['DC'].split() elif self.is_cross_build() and want_cross: exelist = [self.cross_info.config['binaries']['d']] - ccache = [] is_cross = True elif shutil.which("ldc2"): exelist = ['ldc2'] |