From 082e558d66bb41e73470b5537593b7e3227b93c5 Mon Sep 17 00:00:00 2001 From: YAMAMOTO Takashi Date: Mon, 11 Aug 2025 16:06:00 +0900 Subject: [PATCH] wamr-compiler/build_llvm.sh: use dot instead of source (#4541) note that dot is in posix and more portable than source. --- wamr-compiler/build_llvm.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wamr-compiler/build_llvm.sh b/wamr-compiler/build_llvm.sh index 75285b52c..c9e2dd910 100755 --- a/wamr-compiler/build_llvm.sh +++ b/wamr-compiler/build_llvm.sh @@ -14,6 +14,6 @@ cleanup() { trap cleanup EXIT INT TERM /usr/bin/env python3 -m venv --clear "$TEMP_DIR" -source "$TEMP_DIR/bin/activate" +. "$TEMP_DIR/bin/activate" /usr/bin/env python3 -m pip install -r ../build-scripts/requirements.txt /usr/bin/env python3 ../build-scripts/build_llvm.py "$@"