diff options
author | midipix <writeonce@midipix.org> | 2018-08-05 08:03:36 -0400 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2018-08-05 08:09:51 -0400 |
commit | 1f72875a9d19a171a32e759e6251bf8d87e5bcbc (patch) | |
tree | 594c82f1f8d423454b0bdf4d49e9fc74c82b8efe /configure | |
parent | 745113d3e3530f7cbb5aed4d9de81014b238bfd7 (diff) | |
download | ntapi-1f72875a9d19a171a32e759e6251bf8d87e5bcbc.tar.bz2 ntapi-1f72875a9d19a171a32e759e6251bf8d87e5bcbc.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 |