From 87bb9fc2f647d855017f1675d53dad1a8822d0cc Mon Sep 17 00:00:00 2001 From: Jeremy Soller Date: Sat, 7 Sep 2019 20:01:03 -0600 Subject: [PATCH] Fix use of GDB in QEMU --- mk/qemu.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mk/qemu.mk b/mk/qemu.mk index 79341ce..99c9afd 100644 --- a/mk/qemu.mk +++ b/mk/qemu.mk @@ -33,7 +33,7 @@ endif ifneq ($(usb),no) QEMUFLAGS+=-device nec-usb-xhci,id=xhci -device usb-tablet,bus=xhci.0 endif -ifneq ($(gdb),yes) +ifeq ($(gdb),yes) QEMUFLAGS+=-s endif ifeq ($(UNAME),Linux)