diff mbox

KBUILD: Combine config and %config targets.

Message ID alpine.LFD.2.00.0907160519001.11423@localhost (mailing list archive)
State New, archived
Headers show

Commit Message

Robert P. J. Day July 16, 2009, 9:20 a.m. UTC
Since the rules appear to be identical, might as well combine the
targets of config and %config in the same rule.

Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca>

---

  AFAICT, there seems to be no reason to keep these as separate rules
since they are identical.



========================================================================
Robert P. J. Day                               Waterloo, Ontario, CANADA

        Linux Consulting, Training and Annoying Kernel Pedantry.

Web page:                                          http://crashcourse.ca
Twitter:                                       http://twitter.com/rpjday
"Kernel Newbie Corner" column @ linux.com:          http://cli.gs/WG6WYX
========================================================================
--
To unsubscribe from this list: send the line "unsubscribe linux-kbuild" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
diff mbox

Patch

diff --git a/Makefile b/Makefile
index be0abac..cea9a7d 100644
--- a/Makefile
+++ b/Makefile
@@ -443,11 +443,7 @@  ifeq ($(config-targets),1)
 include $(srctree)/arch/$(SRCARCH)/Makefile
 export KBUILD_DEFCONFIG KBUILD_KCONFIG

-config: scripts_basic outputmakefile FORCE
-	$(Q)mkdir -p include/linux include/config
-	$(Q)$(MAKE) $(build)=scripts/kconfig $@
-
-%config: scripts_basic outputmakefile FORCE
+config %config: scripts_basic outputmakefile FORCE
 	$(Q)mkdir -p include/linux include/config
 	$(Q)$(MAKE) $(build)=scripts/kconfig $@