diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2014-03-18 00:43:04 +0200 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2014-03-18 00:43:04 +0200 |
commit | 7f07bc72c536eb1f1a2b75d1d1f57d4f0044f903 (patch) | |
tree | 1db26cfeb250d26463b39119b57061a112230a2b /interpreter.py | |
parent | c3794e003f42cacca64833a6824980847b28a05e (diff) | |
download | meson-7f07bc72c536eb1f1a2b75d1d1f57d4f0044f903.zip meson-7f07bc72c536eb1f1a2b75d1d1f57d4f0044f903.tar.gz meson-7f07bc72c536eb1f1a2b75d1d1f57d4f0044f903.tar.bz2 |
Thanks, Microsoft! Thanks a fucking lot for making your uuids case sensitive in one location and case insensitive in another. And thanks especially a fucking lot for failing in this case while pretending thate everything works. Fuck you!
Diffstat (limited to 'interpreter.py')
-rw-r--r-- | interpreter.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/interpreter.py b/interpreter.py index 34d9721..2a27b4b 100644 --- a/interpreter.py +++ b/interpreter.py @@ -1162,7 +1162,7 @@ class Interpreter(): l = targetclass(name, self.subdir, is_cross, sources, objs, self.environment, kwargs) self.build.targets[name] = l.held_object if name not in self.coredata.target_guids: - self.coredata.target_guids[name] = str(uuid.uuid4()) + self.coredata.target_guids[name] = str(uuid.uuid4()).upper() if self.environment.is_cross_build() and l.is_cross: txt = ' cross build ' else: |