diff options
author | Luke T. Shumaker <lukeshu@lukeshu.com> | 2025-03-31 03:49:18 -0600 |
---|---|---|
committer | Luke T. Shumaker <lukeshu@lukeshu.com> | 2025-03-31 03:51:06 -0600 |
commit | f5d598b06cd6cfdcfa1f89819a843b2b462e7a1c (patch) | |
tree | 300c625c6c1eb07b824d1e2cc32ed5c59ec112f4 /build-aux | |
parent | 8216970914131202c0f81a5d83d57a779ed8ca0f (diff) |
measurestack: Don't print the abspath in "included:" lines
Diffstat (limited to 'build-aux')
-rw-r--r-- | build-aux/measurestack/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build-aux/measurestack/__init__.py b/build-aux/measurestack/__init__.py index 3f59bd6..02cab8f 100644 --- a/build-aux/measurestack/__init__.py +++ b/build-aux/measurestack/__init__.py @@ -1640,7 +1640,7 @@ def main( if result.groups["Extra"].rows: print_group("Extra") for funcname in sorted(result.included_funcs): - print(f"included: {str(funcname)}") + print(f"included: {location_xform(funcname)}") print("*/") |