diff options
author | Sam Ravnborg <sam@ravnborg.org> | 2010-08-14 10:22:58 +0200 |
---|---|---|
committer | Sam Ravnborg <sam@ravnborg.org> | 2010-08-14 22:26:52 +0200 |
commit | 7cfddeef357aac78179ea804b11cffb5fbba8288 (patch) | |
tree | 6fb02879ab6ad179135b4005690316f07a455642 /scripts/Makefile.headersinst | |
parent | bf56fba6703592149e1bcd19220c60eb42dff9b7 (diff) | |
download | linux-stable-7cfddeef357aac78179ea804b11cffb5fbba8288.tar.gz linux-stable-7cfddeef357aac78179ea804b11cffb5fbba8288.tar.bz2 linux-stable-7cfddeef357aac78179ea804b11cffb5fbba8288.zip |
kbuild: drop unifdef-y support
unifdef-y is not used anymore - drop remaining references
Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
Diffstat (limited to 'scripts/Makefile.headersinst')
-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 0fcd83838771..f89cb87f5c01 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)) |