|
@@ -53,7 +53,6 @@ static char *build_subdir_objs(struct manifest *m)
|
|
|
char *build_submodule(struct manifest *m)
|
|
char *build_submodule(struct manifest *m)
|
|
|
{
|
|
{
|
|
|
char *errstr;
|
|
char *errstr;
|
|
|
- struct stat st;
|
|
|
|
|
|
|
|
|
|
if (m->compiled)
|
|
if (m->compiled)
|
|
|
return NULL;
|
|
return NULL;
|
|
@@ -61,10 +60,6 @@ char *build_submodule(struct manifest *m)
|
|
|
if (!expect_obj_file(m))
|
|
if (!expect_obj_file(m))
|
|
|
return NULL;
|
|
return NULL;
|
|
|
|
|
|
|
|
- m->compiled = talloc_asprintf(m, "%s.o", m->dir);
|
|
|
|
|
- if (stat(m->compiled, &st) == 0)
|
|
|
|
|
- return NULL;
|
|
|
|
|
-
|
|
|
|
|
if (verbose >= 2)
|
|
if (verbose >= 2)
|
|
|
printf(" Building dependency %s\n", m->dir);
|
|
printf(" Building dependency %s\n", m->dir);
|
|
|
|
|
|