diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2024-09-05 15:47:00 -0400 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2024-09-05 15:47:00 -0400 |
| commit | df61a0805fa5a54896c93200832165508e5badfa (patch) | |
| tree | cea44cbc98b60b308e74e612bbadc8fbe938e52e /tomo.c | |
| parent | 3444d1652d495def1195ab1d9c1fba4543f2af86 (diff) | |
Correctly resolve '../' paths
Diffstat (limited to 'tomo.c')
| -rw-r--r-- | tomo.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -326,7 +326,7 @@ void build_file_dependency_graph(const char *filename, Table_t *to_compile, Tabl case USE_LOCAL: { const char *path = use->path; path = resolve_path(path, filename, ""); - if (!path) errx(1, "Couldn't resolve import: %s", use->path); + if (!path) errx(1, "Couldn't resolve import: %s relative to: %s", use->path, filename); if (Table$str_get(*to_compile, path)) continue; build_file_dependency_graph(path, to_compile, to_link); |
