From 447984d3ed416b98cfd3e2f12e920c88c52b6505 Mon Sep 17 00:00:00 2001 From: midipix Date: Sun, 5 Aug 2018 08:03:36 -0400 Subject: build system: configure: replace non-simple backtick with $(...) construct. --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index 62955c4..ddea6d3 100755 --- a/configure +++ b/configure @@ -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 -- cgit v1.2.3