From 067fdf0a59b5d3c12f4553dad88eb8e607fca66c Mon Sep 17 00:00:00 2001 From: Achim Gsell Date: Fri, 20 Nov 2020 23:21:44 +0100 Subject: [PATCH] bugfix in setting PATH on macOS --- Pmodules/modbuild.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Pmodules/modbuild.in b/Pmodules/modbuild.in index c405827..67e30ad 100755 --- a/Pmodules/modbuild.in +++ b/Pmodules/modbuild.in @@ -18,7 +18,7 @@ declare -r mydir=$(cd ${mydir} && pwd -P) # so 'source' is able find them if [[ $(uname -s) == 'Darwin' ]]; then - PATH='/usr/local/bin:' + PATH='/opt/local/bin:' else PATH='' fi