]> git.ozlabs.org Git - ccan/blobdiff - tools/ccanlint/compulsory_tests/check_build.c
ccanlint: fix error with --target=build
[ccan] / tools / ccanlint / compulsory_tests / check_build.c
index 830ea91427d4faef8116d686287969ef5215f906..b7935f015d6982aa0fca24d9ba4b03585ca1c54f 100644 (file)
@@ -24,12 +24,13 @@ static const char *can_build(struct manifest *m)
 static char *obj_list(const struct manifest *m)
 {
        char *list = talloc_strdup(m, "");
-       struct ccan_file *i;
+       struct manifest *i;
 
        /* Other CCAN deps. */
-       list_for_each(&m->dep_dirs, i, list) {
+       list_for_each(&m->deps, i, list) {
                if (i->compiled)
-                       list = talloc_asprintf_append(list, "%s ", i->compiled);
+                       list = talloc_asprintf_append(list, "%s ",
+                                                     i->compiled);
        }
        return list;
 }
@@ -89,4 +90,4 @@ struct ccanlint check_build = {
        .can_run = can_build,
 };
 
-REGISTER_TEST(check_build, &build, NULL);
+REGISTER_TEST(check_build, &build, &depends_built, NULL);