]> git.ipfire.org Git - people/ms/ipfire-2.x.git/commitdiff
pmacct: Remove autogen.sh step so it builds with autoconf-2.72
authorAdolf Belka <adolf.belka@ipfire.org>
Fri, 21 Feb 2025 12:44:49 +0000 (13:44 +0100)
committerMichael Tremer <michael.tremer@ipfire.org>
Sat, 22 Feb 2025 14:02:35 +0000 (14:02 +0000)
- Although the pmacct source tarball has a configure script provided, for some reason
   the lfs file ran autogen.sh first and therefore re-created the configure script.
   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 of the
   expected structure.
- It seems reasonable to use the configure script that has been provided by the pmacct
   developers in the source tarbal, so this patch removes the use of the autogen.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 <adolf.belka@ipfire.org>
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
lfs/pmacct

index 5348c2add581dc811a6d248d762d9944a96c94a9..91de82d3f26a0ceecd3c68de376635a6580de57d 100644 (file)
@@ -1,7 +1,7 @@
 ###############################################################################
 #                                                                             #
 # IPFire.org - A linux based firewall                                         #
-# Copyright (C) 2019-2024  IPFire Team  <info@ipfire.org>                     #
+# Copyright (C) 2019-2025  IPFire Team  <info@ipfire.org>                     #
 #                                                                             #
 # 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=/usr \
                                --sysconfdir=/etc/pmacct \