From 92c055052661235ca49c5addd568270778b6d004 Mon Sep 17 00:00:00 2001 From: Wolfgang Thaller Date: Sat, 14 Sep 2019 11:57:29 +0200 Subject: [PATCH] fix macOS build --- interfaces-and-libraries.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/interfaces-and-libraries.sh b/interfaces-and-libraries.sh index e252fcc6e2..208dac020d 100755 --- a/interfaces-and-libraries.sh +++ b/interfaces-and-libraries.sh @@ -141,9 +141,9 @@ function linkHeaders() { # On case-insensitive file systems, there will be some conflicts with # newlib. For now, universal interfaces get the right of way. - rm -f Threads.h # thread.h: does not currently work anyways - rm -f Memory.h # memory.h: non-standard aliasof string.h - rm -f Strings.h # strings.h: traditional bsd string functions + rm -f "$1/Threads.h" # thread.h: does not currently work anyways + rm -f "$1/Memory.h" # memory.h: non-standard aliasof string.h + rm -f "$1/Strings.h" # strings.h: traditional bsd string functions (cd "$1" && find "../../CIncludes" -name '*.h' -exec ln -s {} . \;) }