Skip to content

Commit 49c80ed

Browse files
committed
Use packaged autoconf and automake
1 parent a8d2a36 commit 49c80ed

File tree

1 file changed

+1
-12
lines changed

1 file changed

+1
-12
lines changed

.github/workflows/ci.yml

+1-12
Original file line numberDiff line numberDiff line change
@@ -33,18 +33,7 @@ jobs:
3333
if [ "$RUNNER_OS" = "macOS" ]; then
3434
brew install cmake autoconf automake libtool pkg-config
3535
elif [ "$RUNNER_OS" = "Linux" ]; then
36-
sudo apt-get install curl cmake make libtool pkg-config texinfo
37-
38-
# install autoconf 2.71 from source (required by libffi, not available via apt-get on Ubuntu focal)
39-
wget http://ftp.gnu.org/gnu/autoconf/autoconf-2.71.tar.xz
40-
tar -xf autoconf-2.71.tar.xz
41-
cd autoconf-2.71 && ./configure --prefix=/usr/ && make && sudo make install
42-
autoconf --version
43-
44-
wget http://ftp.gnu.org/gnu/automake/automake-1.16.4.tar.xz
45-
tar -xf automake-1.16.4.tar.xz
46-
cd automake-1.16.4 && ./configure --prefix=/usr/ && make && sudo make install
47-
automake --version
36+
sudo apt-get install cmake make libtool autoconf automake pkg-config texinfo
4837
else
4938
echo Unsupported OS $RUNNER_OS
5039
exit 1

0 commit comments

Comments
 (0)