From 342e95cf32276159164c854717f673008b573093 Mon Sep 17 00:00:00 2001 From: Paulo Matos Date: Wed, 5 Aug 2020 14:10:17 +0200 Subject: [PATCH] Fix variable replacement (#3337) By using `{$threadLibs}` it meant we ended up with a command line with `{hreadLibs}`, which breaks the arm32le build. --- racket/src/ChezScheme/c/Mf-arm32le | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/racket/src/ChezScheme/c/Mf-arm32le b/racket/src/ChezScheme/c/Mf-arm32le index 976912585f..d87df071b6 100644 --- a/racket/src/ChezScheme/c/Mf-arm32le +++ b/racket/src/ChezScheme/c/Mf-arm32le @@ -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