From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-oo1-xc2c.google.com (mail-oo1-xc2c.google.com [IPv6:2607:f8b0:4864:20::c2c]) by sourceware.org (Postfix) with ESMTPS id 0E4A73858D20 for ; Mon, 7 Feb 2022 11:03:39 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 0E4A73858D20 Received: by mail-oo1-xc2c.google.com with SMTP id c7-20020a4ad207000000b002e7ab4185d2so13156688oos.6 for ; Mon, 07 Feb 2022 03:03:39 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:message-id:date:mime-version:user-agent:subject :content-language:to:cc:references:from:in-reply-to :content-transfer-encoding; bh=ajRB6sxbNe9uKkagiOx1jHLa3qH+kIQh8zfBwLeQ5KQ=; b=z2/9I76vqLxxCTbAV1AI58EZflYx2STapBg2RtmEl1HBLX9aZeaSGX9WdYaSUI8ta0 0pHpk5D4wDNaeME2qymVR3eni8zA/EUlydzBrW7Ye6ip/DFSs2p9imzdfz6GDkvs14NW qy4+kDA6haIK6N+YdCTPsUmJvGsh/1ngg0k3gpD1UfVsofcvGRCBUAIrM9TlL/hzkTyN MmpMOlgK7Mx0EwSZFvvpL70/yZt1AUSexCkpCpqzNEi7ZSL0BgAFs+wbj2JbaSUHJajb GxzfKGDvGqYzu5rniykIFl5hBXsWJm8yOrv9ZjBjnwKWhTYUoKoFkHYdaGv7EO9vrpYi 6+2g== X-Gm-Message-State: AOAM531dJXEky6HTPwbgMKuKIu9Jvz1+YHN3wdB2Ep+u8kH+B/e4SXeA /JZc68po5gIJWiqlJXNm84FZTg== X-Google-Smtp-Source: ABdhPJxfLsoDLu+FpJLFKBQUbpB8BsOp4QhJ1jDMLDrcSjanvVj6AqY2JZ7IZp0abHr9NnU/6wUlRQ== X-Received: by 2002:a05:6870:11cb:: with SMTP id 11mr3051985oav.56.1644231818355; Mon, 07 Feb 2022 03:03:38 -0800 (PST) Received: from ?IPV6:2804:431:c7ca:733:4cdc:e08a:54c6:5108? ([2804:431:c7ca:733:4cdc:e08a:54c6:5108]) by smtp.gmail.com with ESMTPSA id b9sm912339ooo.16.2022.02.07.03.03.36 (version=TLS1_3 cipher=TLS_AES_128_GCM_SHA256 bits=128/128); Mon, 07 Feb 2022 03:03:38 -0800 (PST) Message-ID: <6e398ab6-4197-894f-7ab6-8dd846818665@linaro.org> Date: Mon, 7 Feb 2022 08:03:35 -0300 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101 Thunderbird/91.5.1 Subject: Re: [PATCH] elf: Replace tst-audit24bmod2.so with tst-audit24bmod2 Content-Language: en-US To: "H.J. Lu" Cc: GNU C Library , jma14 , Carlos O'Donell , John Mellor-Crummey References: <20220201144636.2129852-1-adhemerval.zanella@linaro.org> <20220201144636.2129852-4-adhemerval.zanella@linaro.org> From: Adhemerval Zanella In-Reply-To: Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-5.0 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, KAM_NUMSUBJECT, NICE_REPLY_A, RCVD_IN_DNSWL_NONE, SPF_HELO_NONE, SPF_PASS, TXREP, T_SCC_BODY_TEXT_LINE autolearn=no autolearn_force=no version=3.4.4 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on server2.sourceware.org X-BeenThere: libc-alpha@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Libc-alpha mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 07 Feb 2022 11:03:40 -0000 On 06/02/2022 16:17, H.J. Lu wrote: >> @@ -919,7 +942,8 @@ extra-test-objs += $(addsuffix .os,$(strip $(modules-names))) >> >> # filtmod1.so, tst-big-note-lib.so, tst-ro-dynamic-mod.so have special >> # rules. >> -modules-names-nobuild := filtmod1 tst-big-note-lib tst-ro-dynamic-mod >> +modules-names-nobuild := filtmod1 tst-big-note-lib tst-ro-dynamic-mod \ >> + tst-audit24bmod1 tst-audit24bmod2.so > > ^^^^ Not needed. > > I got > > make[2]: Entering directory '/export/gnu/import/git/gitlab/x86-glibc/elf' > Makefile:2201: warning: overriding recipe for target > '/export/build/gnu/tools-build/glibc-gitlab/build-x86_64-linux/elf/tst-audit24bmod2.so' > ../Makerules:765: warning: ignoring old recipe for target > '/export/build/gnu/tools-build/glibc-gitlab/build-x86_64-linux/elf/tst-audit24bmod2.so' > > I am testing the enclosed patch and will push it if tests pass. > > H.J. Thanks, looks obvious enough for me.