From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from cantor2.suse.de ([195.135.220.15]:34710 "EHLO mx2.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752889AbaJBNEq (ORCPT ); Thu, 2 Oct 2014 09:04:46 -0400 Message-ID: <542D4D6C.9000505@suse.cz> Date: Thu, 02 Oct 2014 15:04:44 +0200 From: Michal Marek MIME-Version: 1.0 Subject: Re: [PATCH 3/3] kbuild: remove obj-n and lib-n handling References: <1410258381-7088-1-git-send-email-yamada.m@jp.panasonic.com> <1410258381-7088-4-git-send-email-yamada.m@jp.panasonic.com> In-Reply-To: <1410258381-7088-4-git-send-email-yamada.m@jp.panasonic.com> Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit Sender: linux-kbuild-owner@vger.kernel.org List-ID: To: Masahiro Yamada Cc: linux-kbuild@vger.kernel.org, Sam Ravnborg , linux-kernel@vger.kernel.org On 2014-09-09 12:26, Masahiro Yamada wrote: > Kconfig never defines CONFIG_* as 'n'. > Now obj-n is only used in firmware/Makefile and it can be > replaced with obj-. No makefile uses lib-n. BTW, there are a few more instances of *-n, none of which seem useful: $ git --no-pager grep -e '[a-z]-n\>' -- '*Makefile*' '*Kbuild*' Makefile: $(init-n) $(init-) \ Makefile: $(core-n) $(core-) $(drivers-n) $(drivers-) \ Makefile: $(net-n) $(net-) $(libs-n) $(libs-)))) arch/arm/mach-ixp4xx/Makefile:obj-pci-n := arch/powerpc/boot/Makefile:initrd- := $(patsubst zImage%, zImage.initrd%, $(image-n) $(image-)) Michal