lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Date:   Fri, 25 Oct 2019 02:20:17 +0900
From:   Masahiro Yamada <yamada.masahiro@...ionext.com>
To:     Linux Kbuild mailing list <linux-kbuild@...r.kernel.org>
Cc:     Julia Lawall <julia.lawall@...6.fr>,
        Michal Marek <michal.lkml@...kovi.net>,
        Linux Kernel Mailing List <linux-kernel@...r.kernel.org>
Subject: Re: [PATCH 1/2] kbuild: reduce KBUILD_SINGLE_TARGETS as descending
 into subdirectories

On Wed, Oct 16, 2019 at 2:17 PM Masahiro Yamada
<yamada.masahiro@...ionext.com> wrote:
>
> KBUILD_SINGLE_TARGETS does not need to contain all the targets.
> Change it to keep track the targets only from the current directory
> and its subdirectories.
>
> Signed-off-by: Masahiro Yamada <yamada.masahiro@...ionext.com>
> ---

Series, applied to linux-kbuild.


>
>  scripts/Makefile.build | 6 +++---
>  1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/scripts/Makefile.build b/scripts/Makefile.build
> index a9e47953ca53..dcbb0124dac4 100644
> --- a/scripts/Makefile.build
> +++ b/scripts/Makefile.build
> @@ -469,15 +469,15 @@ targets += $(call intermediate_targets, .asn1.o, .asn1.c .asn1.h) \
>
>  ifdef single-build
>
> +KBUILD_SINGLE_TARGETS := $(filter $(obj)/%, $(KBUILD_SINGLE_TARGETS))
> +
>  curdir-single := $(sort $(foreach x, $(KBUILD_SINGLE_TARGETS), \
>                         $(if $(filter $(x) $(basename $(x)).o, $(targets)), $(x))))
>
>  # Handle single targets without any rule: show "Nothing to be done for ..." or
>  # "No rule to make target ..." depending on whether the target exists.
>  unknown-single := $(filter-out $(addsuffix /%, $(subdir-ym)), \
> -                       $(filter $(obj)/%, \
> -                               $(filter-out $(curdir-single), \
> -                                       $(KBUILD_SINGLE_TARGETS))))
> +                       $(filter-out $(curdir-single), $(KBUILD_SINGLE_TARGETS)))
>
>  __build: $(curdir-single) $(subdir-ym)
>  ifneq ($(unknown-single),)
> --
> 2.17.1
>


-- 
Best Regards
Masahiro Yamada

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ