From c6dac109bfd10645381e8ceeb23b2de86cc9e7e8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gabriel=20F=C3=A9ron?= Date: Tue, 24 Oct 2023 11:32:02 +0200 Subject: [PATCH] Fix macOS makefile search path --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 2ac5bf5c..79df80df 100644 --- a/Makefile +++ b/Makefile @@ -76,7 +76,7 @@ docker-test: # Test with the homebrew version of icu4c on macOS with static linking (the default way of linking for distribution on Apple platforms) macos-test: brew install icu4c - RUST_ICU_LINK_SEARCH_DIR=$(brew --prefix)/opt/icu4c/lib \ + RUST_ICU_LINK_SEARCH_DIR="$(shell brew --prefix)/opt/icu4c/lib" \ RUST_ICU_MAJOR_VERSION_NUMBER=${RUST_ICU_MAJOR_VERSION_NUMBER} \ cargo test --no-default-features --features=icu_version_64_plus,icu_version_67_plus,icu_version_68_plus,icu_version_in_env,renaming,static .PHONY: macos-test