diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2015-09-05 01:32:10 +0300 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2015-09-05 14:22:56 +0300 |
commit | 2c5688445bfc8a98972d380c17227ec9da0588ae (patch) | |
tree | 4c9d4111e440f0ac2385d0450a9578497ea512ae /environment.py | |
parent | 70f4e388ca65b3f3381568c345e3bac3eb0551f3 (diff) | |
download | meson-2c5688445bfc8a98972d380c17227ec9da0588ae.zip meson-2c5688445bfc8a98972d380c17227ec9da0588ae.tar.gz meson-2c5688445bfc8a98972d380c17227ec9da0588ae.tar.bz2 |
Created iphone cross file and made it possible to specify compile and link args in the cross file.
Diffstat (limited to 'environment.py')
-rw-r--r-- | environment.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/environment.py b/environment.py index db6d5a2..41520d1 100644 --- a/environment.py +++ b/environment.py @@ -632,7 +632,7 @@ class CrossBuildInfo(): for i in res: if not self.ok_type(i): raise EnvironmentException('Malformed value in cross file variable %s.' % varname) - self.items[varname] = res + self.config[s][entry] = res else: raise EnvironmentException('Malformed value in cross file variable %s.' % varname) |