Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
fork

Configure Feed

Select the types of activity you want to include in your feed.

kbuild: remove redundant -rR flag of hdr-inst

Passing -rR for "make headers_install" is redundant because
the top Makefile has already set -rR to MAKEFLAGS.

Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Signed-off-by: Michal Marek <mmarek@suse.cz>

authored by

Masahiro Yamada and committed by
Michal Marek
1846dfbd fbae4d58

+2 -2
+2 -2
scripts/Kbuild.include
··· 186 186 clean := -f $(srctree)/scripts/Makefile.clean obj 187 187 188 188 ### 189 - # Shorthand for $(Q)$(MAKE) -rR -f scripts/Makefile.headersinst obj= 189 + # Shorthand for $(Q)$(MAKE) -f scripts/Makefile.headersinst obj= 190 190 # Usage: 191 191 # $(Q)$(MAKE) $(hdr-inst)=dir 192 - hdr-inst := -rR -f $(srctree)/scripts/Makefile.headersinst obj 192 + hdr-inst := -f $(srctree)/scripts/Makefile.headersinst obj 193 193 194 194 # Prefix -I with $(srctree) if it is not an absolute path. 195 195 # skip if -I has no parameter