mirror of
https://github.com/jerryscript-project/jerryscript.git
synced 2025-12-15 16:29:21 +00:00
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:
parent
b7c93f170d
commit
0d6568db18
2
Makefile
2
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)
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user