From 4f08df1c769ff2a615f8cda4e35d1bc56f8461af Mon Sep 17 00:00:00 2001 From: Gergely Nagy Date: Mon, 24 Aug 2020 11:49:24 +0200 Subject: [PATCH] kaleidoscope-builder: When doing virtual builds, always clear COMPILER_PREFIX When doing virtual builds, we never want to use the arch prefix. We want to use the compiler as set. Signed-off-by: Gergely Nagy --- etc/kaleidoscope-builder.conf | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/etc/kaleidoscope-builder.conf b/etc/kaleidoscope-builder.conf index d0af6564..01a2e77e 100644 --- a/etc/kaleidoscope-builder.conf +++ b/etc/kaleidoscope-builder.conf @@ -24,8 +24,9 @@ if [ "${ARCH}" = "virtual" ]; then # if [ -z "${COMPILER_PATH}" ]; then COMPILER_PATH="/usr/bin/" - COMPILER_PREFIX="" fi + + COMPILER_PREFIX="" else ARCH="avr" fi