irssi: fix build (failed due to automake update)

This commit is contained in:
Joachim Mairböck
2025-12-27 12:51:00 +01:00
parent 0322b085cd
commit 0468a33eda

View File

@@ -144,6 +144,7 @@ BUILD_PREREQUIRES="
cmd:automake
cmd:awk
cmd:gcc$secondaryArchSuffix
cmd:libtoolize$secondaryArchSuffix
cmd:make
cmd:pkg_config$secondaryArchSuffix
"
@@ -158,8 +159,7 @@ BUILD()
sed -i 's/unichar/unichar2/' SupportDefs.h
export CPPFLAGS="-include `pwd`/SupportDefs.h"
autoconf -fi
automake
autoreconf -fi
runConfigure --omit-dirs binDir ./configure \
--bindir=$commandBinDir \
--with-perl=module \
@@ -167,7 +167,9 @@ BUILD()
--with-socks \
--with-proxy \
--enable-true-color \
--disable-static
--disable-static \
--disable-silent-rules
# perl MakeMaker doesn't support silent make rules
make $jobArgs
}