Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

dyndep support #48

Open
wants to merge 13 commits into
base: master
Choose a base branch
from
2 changes: 2 additions & 0 deletions build.c
Original file line number Diff line number Diff line change
Expand Up @@ -443,6 +443,8 @@ edgedone(struct edge *e)
bool restat, prune, pruned;
int64_t old;

/* mark edge clean for dyndepload */
e->flags &= ~FLAG_DIRTY;
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think this might break manifest rebuilds. We currently use the dirty flag to check if we actually needed to rebuild it (see #31).


newest = NULL;
prune = pruned = false;
Expand Down