aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--scripts/Makefile.headersinst7
-rw-r--r--scripts/headers_install.pl13
2 files changed, 12 insertions, 8 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
44quiet_cmd_install = INSTALL $(printdir) ($(words $(all-files))\ 44quiet_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
50quiet_cmd_remove = REMOVE $(unwanted) 51quiet_cmd_remove = REMOVE $(unwanted)
51 cmd_remove = rm -f $(unwanted-file) 52 cmd_remove = rm -f $(unwanted-file)
diff --git a/scripts/headers_install.pl b/scripts/headers_install.pl
index f0ff9a35acd0..68591cd08731 100644
--- a/scripts/headers_install.pl
+++ b/scripts/headers_install.pl
@@ -3,10 +3,13 @@
3# headers_install prepare the listed header files for use in 3# headers_install prepare the listed header files for use in
4# user space and copy the files to their destination. 4# user space and copy the files to their destination.
5# 5#
6# Usage: headers_install.pl odir installdir [files...] 6# Usage: headers_install.pl readdir installdir arch [files...]
7# odir: dir to open files 7# readdir: dir to open files
8# install: dir to install the files 8# installdir: dir to install the files
9# files: list of files to check 9# arch: current architecture
10# arch is used to force a reinstallation when the arch
11# changes because kbuild then detect a command line change.
12# files: list of files to check
10# 13#
11# Step in preparation for users space: 14# Step in preparation for users space:
12# 1) Drop all use of compiler.h definitions 15# 1) Drop all use of compiler.h definitions
@@ -16,7 +19,7 @@
16use strict; 19use strict;
17use warnings; 20use warnings;
18 21
19my ($readdir, $installdir, @files) = @ARGV; 22my ($readdir, $installdir, $arch, @files) = @ARGV;
20 23
21my $unifdef = "scripts/unifdef -U__KERNEL__"; 24my $unifdef = "scripts/unifdef -U__KERNEL__";
22 25