Skip to content

Commit 2533db6

Browse files
committed
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
1 parent 6697523 commit 2533db6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@
7878
QLOG := >/dev/null
7979
endif
8080

81-
export TARGET_NATIVE_SYSTEMS = $(shell uname -s | tr [:upper:] [:lower:])
81+
export TARGET_NATIVE_SYSTEMS = $(shell uname -s | tr '[:upper:]' '[:lower:]')
8282

8383
# External build configuration
8484
# Flag, indicating whether to use compiler's default libc (YES / NO)

0 commit comments

Comments
 (0)