From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 9D4C23858CD1; Wed, 17 Apr 2024 12:52:47 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 9D4C23858CD1 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1713358367; bh=cEmoFfPQFkzoXZyqqBin3itgf+OnXxNLJ0S/cuoEoag=; h=From:To:Subject:Date:In-Reply-To:References:From; b=gdMn6kovSC/v/om1sYRDeQg/SRz6zyY/JgtDPqvhXRJo6oOhAjI4O0GozKAS4m/7H D6gG5NNIRlKaGtZ2vCb+iZYTz+PEnxcVbIgXBdBHkbM/wIxquyf8YfLuQlDAOjecrE nLsZuZL2TVzTOc09lOlNSOI4rIE4QyfLLrulwubk= From: "jakub at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug preprocessor/114748] [14 Regression] libcpp aclocal.m4 and configure incorrectly regenerated Date: Wed, 17 Apr 2024 12:52:47 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: preprocessor X-Bugzilla-Version: 14.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: minor X-Bugzilla-Who: jakub at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 14.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 List-Id: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D114748 Jakub Jelinek changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jakub at gcc dot gnu.org --- Comment #8 from Jakub Jelinek --- (In reply to Christophe Lyon from comment #7) > So yes indeed at r14-5423-gfbe4e64365ec7f, autoreconf will generate the s= ame > contents, but starting at r14-5424-gdb50aea6259545 we get this discrepanc= y. >=20 > We can probably commit the "fixed" version, but should we investigate why > override.m4 is needed again? The reason why r14-5424 now requires override.m4 can be seen from aclocal -I ../config --verbose. iconv.m4 added use of AC_PREREQ macro and override.m4 (re)defines that. Before that AC_PREREQ wasn't used and so nothing required override.m4. Can you just post the #c0 patch with a ChangeLog entry * aclocal.m4: Regenerate. * configure: Regenerate. ?=