From 562cee9bdba51a46dfbdcdfaedddac65ea3dfadc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cenk=20G=C3=BCndo=C4=9Fan?= <mail-github@cgundogan.de> Date: Fri, 27 Jan 2017 12:07:59 +0100 Subject: [PATCH] Make: newlib: use sh instead of exec/fork --- sys/newlib/Makefile.include | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/newlib/Makefile.include b/sys/newlib/Makefile.include index 3b2523ee3b..19f88e302e 100644 --- a/sys/newlib/Makefile.include +++ b/sys/newlib/Makefile.include @@ -48,7 +48,7 @@ NEWLIB_INCLUDE_DIR ?= $(firstword $(wildcard $(NEWLIB_INCLUDE_PATTERNS))) # If nothing was found we will try to fall back to searching for a cross-gcc in # the current PATH and use a relative path for the includes ifeq (,$(NEWLIB_INCLUDE_DIR)) - NEWLIB_INCLUDE_DIR := $(abspath $(wildcard $(dir $(shell command -v $(PREFIX)gcc))../$(TARGET_ARCH)/include)) + NEWLIB_INCLUDE_DIR := $(abspath $(wildcard $(dir $(shell command -v $(PREFIX)gcc;))../$(TARGET_ARCH)/include)) endif ifeq ($(TOOLCHAIN),llvm) -- GitLab