bsc-performance-tools / extrae

Instrumentation framework to generate execution traces of the most used parallel runtimes.
https://tools.bsc.es/extrae
GNU Lesser General Public License v2.1
63 stars 40 forks source link

Use command instead of the full path #45

Closed rodarima closed 1 year ago

rodarima commented 4 years ago

When installing extrae in nix, the mv and find commands are not installed in /usr/bin or /bin, so the build process fails but they are available in the $PATH. They command builtin looks for them in $PATH, so any aliases are not used, following the behavior of writing the absolute path. The command builtin is defined in the POSIX standard for the sh shell since the issue 4 (1994).