From 5cfda00673468b70e221eb2f70944bb1478940bf Mon Sep 17 00:00:00 2001 From: Gautier Hattenberger Date: Wed, 16 Jun 2021 15:24:11 +0200 Subject: [PATCH] [fix] add which command to test if GDB exists for arm linux (#2741) This was blocking for some reason with the Parrot toolchain --- conf/Makefile.arm-linux-toolchain | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conf/Makefile.arm-linux-toolchain b/conf/Makefile.arm-linux-toolchain index de054efa14..04c747e9d1 100644 --- a/conf/Makefile.arm-linux-toolchain +++ b/conf/Makefile.arm-linux-toolchain @@ -46,7 +46,7 @@ NM = $(PREFIX)-nm SIZE = $(PREFIX)-size STRIP = $(PREFIX)-strip -GDB = $(shell $(PREFIX)-gdb) +GDB = $(shell which $(PREFIX)-gdb) ifeq ($(GDB),) GDB = $(shell which gdb-multiarch) endif