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 flags;
int result; int result;
int joysticks; int joysticks;
int x; int x;
(void)argc;
(void)argv;
// Start low-level tools // Start low-level tools
if (SDL_Init(SDL_INIT_EVERYTHING) == -1) { if (SDL_Init(SDL_INIT_EVERYTHING) == -1) {
jlUtilDie(SDL_GetError()); jlUtilDie(SDL_GetError());

View file

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