First up, thanks for exec-path-from-shell, it's been very helpful for me over the years.
However, it doesn't seem to work on FreeBSD (or at least, my FreeBSD installation). If I call (exec-path-from-shell-initialize) from my config, Emacs hangs indefinitely (though I can still abort with C-g).
I'm currently working around it with:
(unless (eq system-type 'berkeley-unix)
(when (memq window-system '(mac ns x))
(exec-path-from-shell-initialize))
(when (daemonp)
(exec-path-from-shell-initialize)))
System details:
- FreeBSD 15.1-RELEASE
- GNU Emacs 30.2
First up, thanks for
exec-path-from-shell, it's been very helpful for me over the years.However, it doesn't seem to work on FreeBSD (or at least, my FreeBSD installation). If I call
(exec-path-from-shell-initialize)from my config, Emacs hangs indefinitely (though I can still abort withC-g).I'm currently working around it with:
System details: