Skip to content

Commit

Permalink
Fix macOS makefile search path
Browse files Browse the repository at this point in the history
  • Loading branch information
gferon authored and filmil committed Oct 24, 2023
1 parent a641b26 commit c6dac10
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit c6dac10

Please sign in to comment.