Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 104640
b: refs/heads/master
c: d35cb36
h: refs/heads/master
v: v3
  • Loading branch information
Mathieu Desnoyers authored and Linus Torvalds committed Jul 22, 2008
1 parent aff9fba commit d76e702
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 5f17156fc55abac476d180e480bedb0f07f01b14
refs/heads/master: d35cb360c29956510b2fe1a953bd4968536f7216
3 changes: 2 additions & 1 deletion trunk/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -1148,7 +1148,8 @@ clean: archclean $(clean-dirs)
@find . $(RCS_FIND_IGNORE) \
\( -name '*.[oas]' -o -name '*.ko' -o -name '.*.cmd' \
-o -name '.*.d' -o -name '.*.tmp' -o -name '*.mod.c' \
-o -name '*.symtypes' -o -name 'modules.order' \) \
-o -name '*.symtypes' -o -name 'modules.order' \
-o -name 'Module.markers' \) \
-type f -print | xargs rm -f

# mrproper - Delete all generated files, including .config
Expand Down
1 change: 1 addition & 0 deletions trunk/scripts/Makefile.modpost
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@ quiet_cmd_kernel-mod = MODPOST $@
cmd_kernel-mod = $(modpost) $@

vmlinux.o: FORCE
@rm -fr $(kernelmarkersfile)
$(call cmd,kernel-mod)

# Declare generated files as targets for modpost
Expand Down
3 changes: 2 additions & 1 deletion trunk/scripts/mod/modpost.c
Original file line number Diff line number Diff line change
Expand Up @@ -1992,7 +1992,8 @@ static void read_markers(const char *fname)
mod->skip = 1;
}

add_marker(mod, marker, fmt);
if (!mod->skip)
add_marker(mod, marker, fmt);
}
return;
fail:
Expand Down

0 comments on commit d76e702

Please sign in to comment.