diff options
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: |