Commit 9be6847
Fix include path to point to test directory
The previous fix pointed -I to test/include, but the .vcl files
use paths like:
.include "include/db_in_db_out.i"
When masp resolves includes with -I flag, it concatenates:
include_path + "/" + file_from_include_directive
So with -I test/include, it would look for:
test/include/include/db_in_db_out.i (wrong - double "include")
Corrected to point -I to test/ directory, so it looks for:
test/include/db_in_db_out.i (correct!)
This matches how the .vcl files reference the includes.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>1 parent 077de25 commit 9be6847
1 file changed
Lines changed: 2 additions & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
54 | 54 | | |
55 | 55 | | |
56 | 56 | | |
57 | | - | |
| 57 | + | |
| 58 | + | |
58 | 59 | | |
59 | 60 | | |
60 | 61 | | |
| |||
0 commit comments