Couple installer bugs fixed.

This commit is contained in:
Scott Duensing 2021-05-02 15:37:10 -05:00
parent 9a897ec8ef
commit 5bf7816f11
2 changed files with 5 additions and 1 deletions

View file

@ -414,13 +414,16 @@ void jlUtilTitleSet(char *title) {
}
int main(void) {
int main(int argc, char *argv[]) {
int flags;
int result;
int joysticks;
int x;
(void)argc;
(void)argv;
// Start low-level tools
if (SDL_Init(SDL_INIT_EVERYTHING) == -1) {
jlUtilDie(SDL_GetError());

View file

@ -926,6 +926,7 @@ function start() {
# See if all the packages we need are installed
echo ""
tBoldBox tBLUE "Examining system..."
doSudo dpkg --add-architecture i386
tCheckPackages MISSING \
autoconf \
automake \