[oi-dev] Variable PATH in Makefile (tornado)

Andreas Wacknitz A.Wacknitz at gmx.de
Wed Apr 14 11:14:41 UTC 2021


Am 14.04.21 um 12:40 schrieb Nona Hansel:
> Hello,
>
> I'm having some problems updating tornado. Currently, the PATH
> variable in Makefile is defined in the older mode like this:
> PATH=/usr/bin:/usr/gnu/bin:/usr/sbin
> Like this, tornado builds, installs and publishes fine.
>
The old settings prefer / priorize our own tools over the GNU ones
because /usr/bin comes before /usr/gnu/bin.

When you look in make-rules for the definitions of PATH.gnu and
PATH.illumos then you will see that PATH.illumos
does something similar. It priorizes our tools over the GNU tools, but
nevertheless it also includes the GNU binaries path.
So I would expect that the right thing to do would be to use
PATH=$(PATH.illumos)
here.

Andreas



More information about the oi-dev mailing list