diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2010-08-14 16:21:50 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2010-08-14 16:21:50 -0700 |
commit | 5d7cb157025b3b4852f38e6e5e97d06ef12c1d78 (patch) | |
tree | 09831b553687b51749ed99dbabaf3687a4e4bd2a /scripts | |
parent | fc58fb180755cdeda3ce58776eef94a01b37a1c1 (diff) | |
parent | 8b1bb90701f9a51f10ce8a990bcc1e237cb3b1c7 (diff) |
Merge git://git.kernel.org/pub/scm/linux/kernel/git/sam/cleanup
* git://git.kernel.org/pub/scm/linux/kernel/git/sam/cleanup:
defconfig reduction
kbuild: drop unifdef-y support
archs: replace unifdef-y with header-y
include: replace unifdef-y with header-y
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/Makefile.headersinst | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/scripts/Makefile.headersinst b/scripts/Makefile.headersinst index 0fcd8383877..f89cb87f5c0 100644 --- a/scripts/Makefile.headersinst +++ b/scripts/Makefile.headersinst @@ -3,7 +3,6 @@ # # header-y - list files to be installed. They are preprocessed # to remove __KERNEL__ section of the file -# unifdef-y - Same as header-y. Obsolete # objhdr-y - Same as header-y but for generated files # # ========================================================================== @@ -20,7 +19,7 @@ include scripts/Kbuild.include install := $(INSTALL_HDR_PATH)/$(_dst) -header-y := $(sort $(header-y) $(unifdef-y)) +header-y := $(sort $(header-y)) subdirs := $(patsubst %/,%,$(filter %/, $(header-y))) header-y := $(filter-out %/, $(header-y)) |