Skip to content

Commit cc295d8

Browse files
committed
Test osx remove of env
1 parent 6b6b6e0 commit cc295d8

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

deps/build.jl

+4-5
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ if is_windows()
5050
"""
5151
init_envs["MAGICK_CONFIGURE_PATH"] = \"$(escape_string(magick_libdir))\"
5252
init_envs["MAGICK_CODER_MODULE_PATH"] = \"$(escape_string(joinpath(magick_libdir, "modules", "coders")))\"
53+
init_envs["MAGICK_FILTER_MODULE_PATH"] = \"$(escape_string(joinpath(magick_libdir, "modules", "filters")))\"
5354
"""
5455

5556
provides(BuildProcess,
@@ -70,11 +71,9 @@ if is_apple()
7071
homebrew_prefix = Homebrew.prefix()
7172
preloads =
7273
"""
73-
init_envs["MAGICK_CONFIGURE_PATH"] = joinpath("$(homebrew_prefix)",
74-
"lib", "ImageMagick", "config-Q16")
75-
init_envs["MAGICK_CODER_MODULE_PATH"] = joinpath("$(homebrew_prefix)",
76-
"lib", "ImageMagick", "modules-Q16", "coders")
77-
init_envs["PATH"] = joinpath("$(homebrew_prefix)", "bin") * ":" * ENV["PATH"]
74+
init_envs["MAGICK_CONFIGURE_PATH"] = joinpath("$(homebrew_prefix)", "lib", "ImageMagick", "config-Q16")
75+
init_envs["MAGICK_CODER_MODULE_PATH"] = joinpath("$(homebrew_prefix)", "lib", "ImageMagick", "modules-Q16", "coders")
76+
init_envs["MAGICK_FILTER_MODULE_PATH"] = joinpath("$(homebrew_prefix)", "lib", "ImageMagick", "modules-Q16", "filters")
7877
"""
7978
provides(Homebrew.HB, "homebrew/core/imagemagick@6", libwand, os = :Darwin, preload = preloads)
8079
end

0 commit comments

Comments
 (0)