summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Turner <mattst88@gmail.com>2024-07-31 23:16:16 -0400
committerMatt Turner <mattst88@gmail.com>2024-08-05 15:43:01 -0400
commit9b76c3dcccbc5c155258651cbf52d901f03b47a9 (patch)
tree8699daac9bbe3fc44b70d3083e496b613084240a
parentac343c8fdc7c59698d208b0ac2aafb0eb71bb46f (diff)
mesa-run: Make 'wipe' use new configuration args
-rwxr-xr-xmesa-run4
1 files changed, 2 insertions, 2 deletions
diff --git a/mesa-run b/mesa-run
index 97da05e..b03c2cb 100755
--- a/mesa-run
+++ b/mesa-run
@@ -29,8 +29,8 @@ esac
case "$1" in
wipe|wipeout)
echo "Removing ${builddir}"
- exec meson setup --wipe "${builddir}"
- ;;
+ rm -r "${builddir}"
+ ;&
configure)
export LLVM_MAJOR_VERSION="17"
export LLVM_CONFIG="/usr/lib/llvm/${LLVM_MAJOR_VERSION}/bin/llvm-config"