From df4524c3aa488763ac44bb80b5069c8064d9c0a8 Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Sat, 6 Nov 2021 14:31:07 -0700 Subject: [PATCH] Try creating the parent directory before doing the copy. --- src/config | 2 +- src/llvm-project | 2 +- src/wasi-libc | 2 +- tar_from_installation.sh | 1 + 4 files changed, 4 insertions(+), 3 deletions(-) diff --git a/src/config b/src/config index 191bcb9..d7a4dee 160000 --- a/src/config +++ b/src/config @@ -1 +1 @@ -Subproject commit 191bcb948f7191c36eefe634336f5fc5c0c4c2be +Subproject commit d7a4dee7cc25e332b990d0a6d9f0ddd42cb33cf5 diff --git a/src/llvm-project b/src/llvm-project index fd1d8c2..d32170d 160000 --- a/src/llvm-project +++ b/src/llvm-project @@ -1 +1 @@ -Subproject commit fd1d8c2f04dde23bee0fb3a7d069a9b1046da979 +Subproject commit d32170dbd5b0d54436537b6b75beaf44324e0c28 diff --git a/src/wasi-libc b/src/wasi-libc index ad51334..5a7ba74 160000 --- a/src/wasi-libc +++ b/src/wasi-libc @@ -1 +1 @@ -Subproject commit ad5133410f66b93a2381db5b542aad5e0964db96 +Subproject commit 5a7ba74c1959691d79580a1c3f4d94bca94bab8e diff --git a/tar_from_installation.sh b/tar_from_installation.sh index e6cc0d0..ec62dbd 100755 --- a/tar_from_installation.sh +++ b/tar_from_installation.sh @@ -20,6 +20,7 @@ else fi PKGDIR=build/wasi-sdk-$VERSION +mkdir -p build case "$(uname -s)" in Linux*) MACHINE=linux;;