Address pwndbg#674 - add gdb-gdbserver dependency (#676)

for fedora.
This commit is contained in:
geoffbeier 2019-10-07 18:54:59 -04:00 committed by Disconnect3d
parent b64674d032
commit 1158a3086d
1 changed files with 2 additions and 2 deletions

View File

@ -29,7 +29,7 @@ install_apt() {
install_dnf() {
sudo dnf update || true
sudo dnf -y install gdb python-devel python3-devel python-pip python3-pip glib2-devel make
sudo dnf -y install gdb gdb-gdbserver python-devel python3-devel python-pip python3-pip glib2-devel make
sudo dnf -y debuginfo-install glibc
}
@ -44,7 +44,7 @@ fi
if linux; then
distro=$(cat /etc/os-release | grep "^ID=" | cut -d\= -f2 | sed -e 's/"//g')
case $distro in
"ubuntu")
install_apt