Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion helpers-core/make-extract-targets.awk
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,11 @@ NR == 1, /^# +Make data base/ { next; }
/^# +Variables/, /^# +Files/ { next; }

# skip not-target blocks
/^# +Not a target/, /^$/ { next; }
/^# +Not a target/, /^$/ {
is_target_block = 0;
target = "";
next;
}

# The stuff above here describes lines that are not
# explicit targets or not targets other than special ones
Expand Down
Loading