mirror of
https://github.com/MidnightCommander/mc
synced 2025-01-18 09:19:24 +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
|
set -e
|
||||||
|
|
||||||
srcdir="$(cd "$(dirname "$0")" && pwd)"
|
# Use backticks to support ksh on Solaris
|
||||||
|
basedir=`dirname "$0"`
|
||||||
|
srcdir=`cd "$basedir" && pwd`
|
||||||
|
|
||||||
cd "$srcdir"
|
cd "$srcdir"
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user