mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-22 04:22:34 +03:00
buildsys: support bootstrapping on Solaris by using backticks in autogen.sh
Signed-off-by: Yury V. Zaytsev <yury@shurup.com>
This commit is contained in:
parent
eb1375b65d
commit
380c39010a
@ -2,7 +2,9 @@
|
||||
|
||||
set -e
|
||||
|
||||
srcdir="$(cd "$(dirname "$0")" && pwd)"
|
||||
# Use backticks to support ksh on Solaris
|
||||
basedir=`dirname "$0"`
|
||||
srcdir=`cd "$basedir" && pwd`
|
||||
|
||||
cd "$srcdir"
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user