Commit 1591860d authored by Rusty Russell's avatar Rusty Russell

ccanlint: fix error with --target=build

It requires that we build the objects first.
parent 73cc6ce4
...@@ -80,4 +80,4 @@ struct ccanlint build = { ...@@ -80,4 +80,4 @@ struct ccanlint build = {
.can_run = can_build, .can_run = can_build,
}; };
REGISTER_TEST(build, &depends_built, &build_objs, NULL); REGISTER_TEST(build, &build_objs, NULL);
...@@ -90,4 +90,4 @@ struct ccanlint check_build = { ...@@ -90,4 +90,4 @@ struct ccanlint check_build = {
.can_run = can_build, .can_run = can_build,
}; };
REGISTER_TEST(check_build, &build, NULL); REGISTER_TEST(check_build, &build, &depends_built, NULL);
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