Fix variable replacement (#3337)
By using `{$threadLibs}` it meant we ended up with a command line with `{hreadLibs}`, which breaks the arm32le build.
This commit is contained in:
parent
29a6ca6737
commit
342e95cf32
|
@ -16,7 +16,7 @@
|
|||
m ?= arm32le
|
||||
Cpu ?= ARMV6
|
||||
|
||||
mdclib = -lm -ldl ${ncursesLib} {$threadLibs} -lrt
|
||||
mdclib = -lm -ldl ${ncursesLib} ${threadLibs} -lrt
|
||||
C = ${CC} ${CPPFLAGS} ${warningFlags} ${optFlags} ${CFLAGS}
|
||||
o = o
|
||||
mdsrc ?= arm32le.c
|
||||
|
|
Loading…
Reference in New Issue
Block a user