Commit bd388a4e authored by Stefan Behnel's avatar Stefan Behnel

try not to write absolute source file paths into C file position comments and...

try not to write absolute source file paths into C file position comments and use paths relative to build directory instead
parent d4df9dd0
......@@ -210,7 +210,11 @@ class FileSourceDescriptor(SourceDescriptor):
return lines
def get_description(self):
return self.path_description
try:
return os.path.relpath(self.path_description)
except ValueError:
# path not under current directory => use complete file path
return self.path_description
def get_error_description(self):
path = self.filename
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment