commit 5840d42f371e1ec45196f6d2b6fd27a2246cb74d parent 07609fd9d7bdbf0390eb8a4db46973ae7cdd6954 Author: Sebastian <sebastian@sebsite.pw> Date: Sat, 28 Oct 2023 02:34:39 -0400 scripts/genbootstrap: quote $BINOUT Signed-off-by: Sebastian <sebastian@sebsite.pw> Diffstat:
M | scripts/genbootstrap | | | 4 | ++-- |
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/scripts/genbootstrap b/scripts/genbootstrap @@ -2,10 +2,10 @@ cd "$(dirname "$0")/.." mkdir -p "${BINOUT:-.bin}" makefiles/ -hare build -o ${BINOUT:-.bin}/genbootstrap cmd/genbootstrap +hare build -o "${BINOUT:-.bin}"/genbootstrap cmd/genbootstrap for platform in linux freebsd; do for arch in x86_64 aarch64 riscv64; do echo makefiles/$platform.$arch.mk - ${BINOUT:-.bin}/genbootstrap $platform $arch >makefiles/$platform.$arch.mk + "${BINOUT:-.bin}"/genbootstrap $platform $arch >makefiles/$platform.$arch.mk done done