From ad8b5e0a8c7c9d7dd590fb76a29fe5d6ab18e22f Mon Sep 17 00:00:00 2001 From: ihaveahax Date: Fri, 25 Aug 2023 17:58:22 -0700 Subject: [PATCH] arm9/arm11 Makefile: Fix building with spaces in path (#828) This quotes $(CURDIR) which fixes an issue with building GM9 in a path with spaces, which Windows users are likely to have. --- arm11/Makefile | 2 +- arm9/Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/arm11/Makefile b/arm11/Makefile index f0f8a48..b52d531 100644 --- a/arm11/Makefile +++ b/arm11/Makefile @@ -1,6 +1,6 @@ PROCESSOR := ARM11 -TARGET := $(shell basename $(CURDIR)) +TARGET := $(shell basename "$(CURDIR)") SOURCE := source BUILD := build diff --git a/arm9/Makefile b/arm9/Makefile index c631b1a..0c5b852 100644 --- a/arm9/Makefile +++ b/arm9/Makefile @@ -1,6 +1,6 @@ PROCESSOR := ARM9 -TARGET := $(shell basename $(CURDIR)) +TARGET := $(shell basename "$(CURDIR)") SOURCE := source BUILD := build