diff options
author | Andrew Robbins <contact@andrewrobbins.info> | 2017-05-19 23:17:13 -0400 |
---|---|---|
committer | Andrew Robbins <contact@andrewrobbins.info> | 2017-05-19 23:19:41 -0400 |
commit | 8d6b673a29e21c0d60b54bb8049bdd406a7377b5 (patch) | |
tree | c5114e17588c2444e92eedd78caa0077f81f934a /libreboot | |
parent | 28cce2965ed436a2e71203c8c04457c793b8a026 (diff) | |
download | librebootfr-8d6b673a29e21c0d60b54bb8049bdd406a7377b5.tar.gz librebootfr-8d6b673a29e21c0d60b54bb8049bdd406a7377b5.zip |
Calls to external command 'realpath' replaced w/ 'readlink -f'.
Diffstat (limited to 'libreboot')
-rwxr-xr-x | libreboot | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -133,7 +133,7 @@ libreboot_tool() { } libreboot_setup() { - root="$(realpath "$(dirname "$0")")" + root="$(readlink -f "$(dirname "$0")")" executable="$(basename "$0")" local requirements="git" |