Re: [PATCH 1/1] configure.ac: Fix SDL2 typo by referencing value

2023-08-12 Thread Paul Menzel
Dear Michał, Thank you for your patch. Am 19.07.23 um 00:48 schrieb Michał Grzelak: During configuration of SDL2, variable enable_grub_emu_sdl2 is checked whether to throw an error message. Howerever, error could not happen However because two unequal strings were compared. Fix this by ref

Re: [PATCH 1/1] configure.ac: Fix SDL2 typo by referencing value

2023-08-11 Thread Daniel Kiper
On Wed, Jul 19, 2023 at 07:53:39PM +0200, Julian Andres Klode wrote: > On Wed, Jul 19, 2023 at 12:48:21AM +0200, Michał Grzelak wrote: > > During configuration of SDL2, variable enable_grub_emu_sdl2 is checked > > whether to throw an error message. Howerever, error could not happen > > because two

Re: [PATCH 1/1] configure.ac: Fix SDL2 typo by referencing value

2023-07-19 Thread Julian Andres Klode
On Wed, Jul 19, 2023 at 12:48:21AM +0200, Michał Grzelak wrote: > During configuration of SDL2, variable enable_grub_emu_sdl2 is checked > whether to throw an error message. Howerever, error could not happen > because two unequal strings were compared. Fix this by referencing > value of enable_grub

[PATCH 1/1] configure.ac: Fix SDL2 typo by referencing value

2023-07-18 Thread Michał Grzelak
During configuration of SDL2, variable enable_grub_emu_sdl2 is checked whether to throw an error message. Howerever, error could not happen because two unequal strings were compared. Fix this by referencing value of enable_grub_emu_sdl2, not name. Fixes: 17d6ac1a7 (emu: Add SDL2 support) Signed-o