diff options
author | Matt Turner <mattst88@gmail.com> | 2024-07-22 18:56:08 -0400 |
---|---|---|
committer | Matt Turner <mattst88@gmail.com> | 2024-07-31 23:17:33 -0400 |
commit | 843e1a45bce308b18adf98d87d3f0765ecb8a15d (patch) | |
tree | e48f95fb8f7909c1ab4f42dbd6d2f70dcd203954 /mesa-debug-asan | |
parent | 8db0f60263db1d029d4dc55f0477d684dd755ab9 (diff) |
mesa-debug-asan: Fix extra_args
Arrays cannot be exported.
Diffstat (limited to 'mesa-debug-asan')
-rwxr-xr-x | mesa-debug-asan | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesa-debug-asan b/mesa-debug-asan index 3ff7dce..56545b7 100755 --- a/mesa-debug-asan +++ b/mesa-debug-asan @@ -4,6 +4,6 @@ export cflags="-ggdb3 -O0 -march=native -pipe" export cxxflags="${cflags}" export buildtype=debug export builddir=~/projects/mesa/build-debug-asan -export extra_args=(-Db_sanitize="address,undefined") +export extra_args=-Db_sanitize="address,undefined" exec mesa-run "$@" |