diff options
author | Sam Ravnborg <sam@ravnborg.org> | 2008-06-16 15:29:38 -0400 |
---|---|---|
committer | Sam Ravnborg <sam@ravnborg.org> | 2008-07-25 16:12:18 -0400 |
commit | db1bec4f5271d7799d481cd4d95fdc268bdd7614 (patch) | |
tree | afdb6d5c490c1cd31670c6cbf0cc58c97c7d2c86 /scripts/Makefile.headersinst | |
parent | 6b36ab27d7161bc233e014ff38d8b17ae9975dee (diff) |
kbuild: install all headers when arch is changed
We see some header files that are selected dependent on
the actual architecture so force a reinstallation
of all header files when the arch changes.
This slows down "make headers_check_all" but then
we better reflect reality.
Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
Diffstat (limited to 'scripts/Makefile.headersinst')
-rw-r--r-- | scripts/Makefile.headersinst | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/scripts/Makefile.headersinst b/scripts/Makefile.headersinst index be2b70c48a3b..612dc13ddd85 100644 --- a/scripts/Makefile.headersinst +++ b/scripts/Makefile.headersinst | |||
@@ -43,9 +43,10 @@ printdir = $(patsubst $(INSTALL_HDR_PATH)/%/,%,$(dir $@)) | |||
43 | 43 | ||
44 | quiet_cmd_install = INSTALL $(printdir) ($(words $(all-files))\ | 44 | quiet_cmd_install = INSTALL $(printdir) ($(words $(all-files))\ |
45 | file$(if $(word 2, $(all-files)),s)) | 45 | file$(if $(word 2, $(all-files)),s)) |
46 | cmd_install = $(PERL) $< $(srctree)/$(obj) $(install) $(header-y); \ | 46 | cmd_install = \ |
47 | $(PERL) $< $(objtree)/$(obj) $(install) $(objhdr-y); \ | 47 | $(PERL) $< $(srctree)/$(obj) $(install) $(SRCARCH) $(header-y); \ |
48 | touch $@ | 48 | $(PERL) $< $(objtree)/$(obj) $(install) $(SRCARCH) $(objhdr-y); \ |
49 | touch $@ | ||
49 | 50 | ||
50 | quiet_cmd_remove = REMOVE $(unwanted) | 51 | quiet_cmd_remove = REMOVE $(unwanted) |
51 | cmd_remove = rm -f $(unwanted-file) | 52 | cmd_remove = rm -f $(unwanted-file) |