Sometime we need to patch the build system to ensure the build picks the right
version of the tool.
This tool could be the compiler, the linker, gsed or anything.
Add a new directory in the first place in the path, and a variable to define
which binary should be there and which name it should have.
For example if one want to use swig30 but does not want to patch the build
system so that it tries to use swig3.0 instead of swig as a binary, he can
simply specify:
BINARY_RENAME= swig3.0 swig
Now the first swig binary found in the path for the build system will be:
${WRKDIR}/.bin/swig -> /usr/local/bin/swig3.0