debian-setup: include GCC and G++ in the basic list.

At least on my just-now-installed Kubuntu 20.04 VM, G++ wasn't installed
by default, and you need that to compile Wireshark (you can avoid it if
you're not building the GUI code, but the GUI code is Qt-based, so it's
in C++).  Add both GCC and G++ to the basic list.


(cherry picked from commit 5f0dc153dd)
This commit is contained in:
Guy Harris 2021-03-15 04:59:42 +00:00
parent 82f93c42f7
commit f6cfb8362c
1 changed files with 3 additions and 1 deletions

View File

@ -50,7 +50,9 @@ for arg; do
esac
done
BASIC_LIST="libglib2.0-dev \
BASIC_LIST="gcc \
g++\
libglib2.0-dev \
qttools5-dev \
qttools5-dev-tools \
libqt5svg5-dev \