Re: [PATCH] configure: replace $(realpath emacs) with $(cd emacs && pwd -P)

2020-10-21 Thread David Bremner
Tomi Ollila writes: > For portability; the realpath command (e.g. from GNU coreutils) > is not so common outside Linux systems. > > The "$(cd emacs && pwd -P)" replaces that realpath(1) execution > suitably in this context (using just bash(1) builtins). Applied to master. It seems not to make

[PATCH] configure: replace $(realpath emacs) with $(cd emacs && pwd -P)

2020-10-20 Thread Tomi Ollila
For portability; the realpath command (e.g. from GNU coreutils) is not so common outside Linux systems. The "$(cd emacs && pwd -P)" replaces that realpath(1) execution suitably in this context (using just bash(1) builtins). --- Quotes ("") added for it to be better example for someone(tm) who