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] [thread-next>] [day] [month] [year] [list]
Message-ID: <Y8elxMUAlFzUv91j@bergen.fjasle.eu>
Date:   Wed, 18 Jan 2023 08:54:44 +0100
From:   Nicolas Schier <nicolas@...sle.eu>
To:     Thomas Weißschuh <linux@...ssschuh.net>
Cc:     Masahiro Yamada <masahiroy@...nel.org>,
        Nathan Chancellor <nathan@...nel.org>,
        Nick Desaulniers <ndesaulniers@...gle.com>,
        linux-kernel@...r.kernel.org, linux-kbuild@...r.kernel.org
Subject: Re: [PATCH v3 1/2] kbuild: also delete temporary directories

On Wed 18 Jan 2023 05:05:34 GMT, Thomas Weißschuh wrote:
> Reuse the standard naming schema for temporary files also for 
> temporary
> directories.
> 
> Such a directory will be used by the kheaders generation.
> 
> Signed-off-by: Thomas Weißschuh <linux@...ssschuh.net>
> ---
>  Makefile | 5 +++--
>  1 file changed, 3 insertions(+), 2 deletions(-)
> 
> diff --git a/Makefile b/Makefile
> index e09fe100efb2..863b3fdd4374 100644
> --- a/Makefile
> +++ b/Makefile
> @@ -2026,11 +2026,12 @@ clean: $(clean-dirs)
>  		-o -name '*.lex.c' -o -name '*.tab.[ch]' \
>  		-o -name '*.asn1.[ch]' \
>  		-o -name '*.symtypes' -o -name 'modules.order' \
> -		-o -name '.tmp_*' \
>  		-o -name '*.c.[012]*.*' \
>  		-o -name '*.ll' \
>  		-o -name '*.gcno' \
> -		-o -name '*.*.symversions' \) -type f -print | xargs rm -f
> +		-o -name '*.*.symversions' \) -type f -print \
> +		-o -name '.tmp_*' -print \
> +		| xargs rm -rf
>  
>  # Generate tags for editors
>  # ---------------------------------------------------------------------------
> 
> -- 
> 2.39.1

Thanks!

Reviewed-by: Nicolas Schier <nicolas@...sle.eu>
Tested-by: Nicolas Schier <nicolas@...sle.eu>

Download attachment "signature.asc" of type "application/pgp-signature" (834 bytes)

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ