There was an error while loading. Please reload this page.
1 parent 8e815c3 commit 49e2f82Copy full SHA for 49e2f82
1 file changed
.github/workflows/package.yml
@@ -120,7 +120,10 @@ jobs:
120
} | sudo tee /etc/apt/sources.list.d/ubuntu-ports.list > /dev/null
121
fi
122
sudo apt-get update
123
- sudo apt-get install -y libpcap-dev:${{ matrix.arch }} libasound2-dev:${{ matrix.arch }}
+ # libpcap0.8-dev ships /usr/bin/pcap-config in a non-arch path that differs per arch
124
+ # and can't co-install with the host's amd64 copy; let the target arch's version win
125
+ sudo apt-get install -y -o Dpkg::Options::=--force-overwrite \
126
+ libpcap-dev:${{ matrix.arch }} libasound2-dev:${{ matrix.arch }}
127
128
# build against glibc 2.28 so releases keep running on older distros (fixes #1256)
129
- name: Build binary (Linux)
0 commit comments