diff options
author | midipix <writeonce@midipix.org> | 2015-09-21 00:15:01 -0400 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2016-11-10 23:35:20 -0500 |
commit | d37b7787e5484e00e78f755ea2fd3bad4c75da3b (patch) | |
tree | 7cbf0fd9603a05a927ea64bd85885f92b29e0bfc /configure | |
parent | d40d138ed41ff78fc0347ce256f88d09f405ba37 (diff) | |
download | perk-d37b7787e5484e00e78f755ea2fd3bad4c75da3b.tar.bz2 perk-d37b7787e5484e00e78f755ea2fd3bad4c75da3b.tar.xz |
replace non-portable use of readlink with a portable cd-pwd sequence.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -13,7 +13,7 @@ error_msg() init_vars() { - mb_project_dir=`readlink -f $(dirname $0)` + mb_project_dir=$(cd `dirname $0` ; pwd) mb_pwd=`pwd` if [ x"$mb_config" = x ]; then |