From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp-out1.suse.de (smtp-out1.suse.de [IPv6:2001:67c:2178:6::1c]) by sourceware.org (Postfix) with ESMTPS id 0A7133860758 for ; Fri, 30 Jun 2023 11:33:19 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org 0A7133860758 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=suse.cz Authentication-Results: sourceware.org; spf=fail smtp.mailfrom=suse.cz Received: from imap2.suse-dmz.suse.de (imap2.suse-dmz.suse.de [192.168.254.74]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-521) server-digest SHA512) (No client certificate requested) by smtp-out1.suse.de (Postfix) with ESMTPS id 0F7CF2189C; Fri, 30 Jun 2023 11:33:18 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=suse.cz; s=susede2_rsa; t=1688124798; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc: mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=SbEL2ZM6nCDC229xR+gx52lCt7j6AU1EL6vzgV9wgks=; b=pJlWtaJrsJaXGs62RWfycAJ2b3EFS1w/46pZ67sG5j9mNma9WXuc5Q+0D0zlg5mP2vKk5i OSsSX8bDDYX/jcyJiaNVT3hZOYWsACXwwVv+56AGQ7OQ3uiLpB6Y4V502jaYXDFDJCRSrf a2Gh66AnkEJq4LZvTBJZ/5wgpi4GrPc= DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=suse.cz; s=susede2_ed25519; t=1688124798; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc: mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=SbEL2ZM6nCDC229xR+gx52lCt7j6AU1EL6vzgV9wgks=; b=9TeCG1lbWrpOuJ1yynb1OqMCwoFWyYgIT/WDo+Wn2+XNHbz+k4K44nBtgJ4nnVwgyVqwZf JZ14/looK95an4AA== Received: from imap2.suse-dmz.suse.de (imap2.suse-dmz.suse.de [192.168.254.74]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-521) server-digest SHA512) (No client certificate requested) by imap2.suse-dmz.suse.de (Postfix) with ESMTPS id F2A34138F8; Fri, 30 Jun 2023 11:33:17 +0000 (UTC) Received: from dovecot-director2.suse.de ([192.168.254.65]) by imap2.suse-dmz.suse.de with ESMTPSA id KrM2O329nmQmLQAAMHmgww (envelope-from ); Fri, 30 Jun 2023 11:33:17 +0000 From: Martin Jambor To: GCC Patches Cc: Marek Polacek Subject: [committed] Regenrate lto-plugin/Makefile.in In-Reply-To: References: User-Agent: Notmuch/0.37 (https://notmuchmail.org) Emacs/28.2 (x86_64-suse-linux-gnu) Date: Fri, 30 Jun 2023 13:33:17 +0200 Message-ID: MIME-Version: 1.0 Content-Type: text/plain X-Spam-Status: No, score=-10.9 required=5.0 tests=BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,GIT_PATCH_0,SPF_HELO_NONE,SPF_SOFTFAIL,TXREP,T_SCC_BODY_TEXT_LINE autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: Hi, On Thu, Jun 29 2023, Marek Polacek wrote: > On Thu, Jun 29, 2023 at 05:58:22PM +0200, Martin Jambor wrote: [...] >> >> Unfortunately I won't have time to actually look at this in the next 2-3 >> weeks, so I am inclined to just trust the verification script (which >> essentially runs autoconf/automake everywhere and then expects no diff) >> and commit the one-line change. What do you think, does that make sense >> (even without looking at why other Makefile.in files did not change)? > > Yes please, go ahead with the one line change meanwhile. Thanks! > > I've opened PR110467 for the build problem. > > Marek Commit regenerated lto-plugin/Makefile.in in order to reflect changes introduction of --enable-host-pie. lto-plugin/ChangeLog: 2023-06-30 Martin Jambor * Makefile.in: Regenerate. --- lto-plugin/Makefile.in | 1 + 1 file changed, 1 insertion(+) diff --git a/lto-plugin/Makefile.in b/lto-plugin/Makefile.in index cb568e1e09f..f6f5b020ff5 100644 --- a/lto-plugin/Makefile.in +++ b/lto-plugin/Makefile.in @@ -298,6 +298,7 @@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ +enable_host_bind_now = @enable_host_bind_now@ exec_prefix = @exec_prefix@ gcc_build_dir = @gcc_build_dir@ get_gcc_base_ver = @get_gcc_base_ver@ -- 2.41.0