2022-11-28 18:27:06 +00:00
|
|
|
# Remove StrawberryPerl from the PATH environment variable due to various build
|
|
|
|
# pollution.
|
|
|
|
unset(new_path)
|
|
|
|
|
|
|
|
foreach(p $ENV{PATH})
|
|
|
|
if(NOT p MATCHES "(^|\\\\)[Ss]trawberry\\\\([Pp]erl|[Cc])\\\\(.*\\\\)?[Bb]in$")
|
|
|
|
list(APPEND new_path ${p})
|
|
|
|
endif()
|
2022-11-28 18:34:48 +00:00
|
|
|
endforeach()
|
2022-11-28 18:27:06 +00:00
|
|
|
|
|
|
|
set(ENV{PATH} "${new_path}")
|
|
|
|
|
|
|
|
# vim:sw=4 et sts=4 ts=8:
|