Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Do not use full path with
moulin
in the build.ninja
Now we have full path to the moulin used inside build.ninja. Like this: ``` rule regenerate command = /home/rsm/.local/bin/moulin ... ... rule yocto_build command = bash -c "/home/rsm/.local/bin/moulin ... ``` and this prefix dosn't look aligned with other tools used inside `build.ninja`. So, this commit removes path before moulin script. As result we have ``` rule regenerate command = moulin ... ... rule yocto_build command = bash -c "moulin ... ``` Signed-off-by: Ruslan Shymkevych <[email protected]> Reviewed-by: Volodymyr Babchuk <[email protected]>
- Loading branch information