From mboxrd@z Thu Jan 1 00:00:00 1970 From: Adolf Belka To: development@lists.ipfire.org Subject: [PATCH 2/2] pmacct: Remove autogen.sh step so it builds with autoconf-2.72 Date: Fri, 21 Feb 2025 13:44:49 +0100 Message-ID: <20250221124449.1635655-2-adolf.belka@ipfire.org> In-Reply-To: <20250221124449.1635655-1-adolf.belka@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============2691216857786753384==" List-Id: --===============2691216857786753384== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable - Although the pmacct source tarball has a configure script provided, for som= e reason the lfs file ran autogen.sh first and therefore re-created the configure s= cript. Whatever the autogen.sh script was creating it ended up with a result that= the new autoconf-2.72 didn't like. Some problem with an end of line that was not o= f the expected structure. - It seems reasonable to use the configure script that has been provided by t= he pmacct developers in the source tarbal, so this patch removes the use of the auto= gen.sh script and uses the configure script provided by pmacct. This then allowed= a successful build with the autoconf-2.72 Signed-off-by: Adolf Belka --- lfs/pmacct | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lfs/pmacct b/lfs/pmacct index 5348c2add..91de82d3f 100644 --- a/lfs/pmacct +++ b/lfs/pmacct @@ -1,7 +1,7 @@ ############################################################################= ### # = # # IPFire.org - A linux based firewall = # -# Copyright (C) 2019-2024 IPFire Team = # +# Copyright (C) 2019-2025 IPFire Team = # # = # # This program is free software: you can redistribute it and/or modify = # # it under the terms of the GNU General Public License as published by = # @@ -81,7 +81,6 @@ $(subst %,%_BLAKE2,$(objects)) : $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) @$(PREBUILD) @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE) - cd $(DIR_APP) && ./autogen.sh cd $(DIR_APP) && ./configure \ --prefix=3D/usr \ --sysconfdir=3D/etc/pmacct \ --=20 2.48.1 --===============2691216857786753384==--