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 /projects/libreboot-sources/install | |
parent | 28cce2965ed436a2e71203c8c04457c793b8a026 (diff) | |
download | librebootfr-8d6b673a29e21c0d60b54bb8049bdd406a7377b5.tar.gz librebootfr-8d6b673a29e21c0d60b54bb8049bdd406a7377b5.zip |
Calls to external command 'realpath' replaced w/ 'readlink -f'.
Diffstat (limited to 'projects/libreboot-sources/install')
-rwxr-xr-x | projects/libreboot-sources/install/libreboot-sources | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/projects/libreboot-sources/install/libreboot-sources b/projects/libreboot-sources/install/libreboot-sources index 953d4a1e..d2f19753 100755 --- a/projects/libreboot-sources/install/libreboot-sources +++ b/projects/libreboot-sources/install/libreboot-sources @@ -103,7 +103,7 @@ requirements() { } setup() { - root=$( realpath "$( dirname "$0" )" ) + root=$(readlink -f "$( dirname "$0" )" ) executable=$( basename "$0" ) } |