From 0d6568db1859047e269071d95d8275a8cc002e25 Mon Sep 17 00:00:00 2001 From: Peter Gal Date: Wed, 16 Sep 2015 17:14:00 +0200 Subject: [PATCH] Fix tr arguments in the Makefile On Linux the original tr call did nothing and thus the Makefile tried to load the toolchain_Linux_x86_64.cmake file, which doesn't exists. JerryScript-DCO-1.0-Signed-off-by: Peter Gal pgal.u-szeged@partner.samsung.com --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index e04402521..575d1a438 100644 --- a/Makefile +++ b/Makefile @@ -78,7 +78,7 @@ QLOG := >/dev/null endif -export TARGET_NATIVE_SYSTEMS = $(shell uname -s | tr [:upper:] [:lower:]) +export TARGET_NATIVE_SYSTEMS = $(shell uname -s | tr '[:upper:]' '[:lower:]') # External build configuration # Flag, indicating whether to use compiler's default libc (YES / NO)