diff options
author | midipix <writeonce@midipix.org> | 2018-08-05 08:03:36 -0400 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2018-08-05 08:08:48 -0400 |
commit | 18bbd0e8d068ca753bde974cc124c8820aab00c6 (patch) | |
tree | aeaae58b366a512d383476a20bcbf04b82855d5b | |
parent | f1e0885fbf71c91fbe8b7d7228ba9666fd98c430 (diff) | |
download | w32lib-18bbd0e8d068ca753bde974cc124c8820aab00c6.tar.bz2 w32lib-18bbd0e8d068ca753bde974cc124c8820aab00c6.tar.xz |
build system: configure: replace non-simple backtick with $(...) construct.
-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 |