diff options
author | midipix <writeonce@midipix.org> | 2018-08-05 08:03:36 -0400 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2018-08-05 08:08:47 -0400 |
commit | 63b5a5c9a59b60f72e8bc0313fe48192efb06a04 (patch) | |
tree | b86912e27fa82146c95ae6e685bb7dbd4a31226e /configure | |
parent | 30148255aaffaea6ff374f7fa4be196c14a55a5e (diff) | |
download | mdso-63b5a5c9a59b60f72e8bc0313fe48192efb06a04.tar.bz2 mdso-63b5a5c9a59b60f72e8bc0313fe48192efb06a04.tar.xz |
build system: configure: replace non-simple backtick with $(...) construct.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -24,7 +24,7 @@ warning_msg() init_vars() { - mb_project_dir=$(cd `dirname $0` ; pwd) + mb_project_dir=$(cd "$(dirname $0)" ; pwd) mb_pwd=`pwd` if [ -z "$mb_config" ]; then |