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
This commit is contained in:
Peter Gal 2015-09-16 17:14:00 +02:00
parent b7c93f170d
commit 0d6568db18

View File

@ -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)