fix scripts/setup-devel-build-dir.sh
This commit is contained in:
parent
c01df4894f
commit
cf20800ea9
1 changed files with 5 additions and 3 deletions
|
@ -4,11 +4,13 @@ dst="$PWD"
|
|||
cd "$(dirname "${BASH_SOURCE[0]}")"/.. || exit $?
|
||||
src="$PWD"
|
||||
|
||||
exec ${MESON:-meson} \
|
||||
${MESON:-meson} "$src" "$dst" \
|
||||
--buildtype=debug \
|
||||
--prefix="$dst/install" \
|
||||
--prefix="$dst/install"
|
||||
|
||||
${MESON:-meson} configure \
|
||||
-Dstrip=false \
|
||||
-Db_lto=false \
|
||||
-Db_ndebug=false \
|
||||
-Db_sanitize=address,undefined \
|
||||
"$src" "$dst" "$@"
|
||||
"$@" "$dst"
|
||||
|
|
Loading…
Reference in a new issue