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.
This commit is contained in:
ihaveahax 2023-08-25 17:58:22 -07:00 committed by GitHub
parent 14b390a943
commit ad8b5e0a8c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
PROCESSOR := ARM11
TARGET := $(shell basename $(CURDIR))
TARGET := $(shell basename "$(CURDIR)")
SOURCE := source
BUILD := build

View File

@ -1,6 +1,6 @@
PROCESSOR := ARM9
TARGET := $(shell basename $(CURDIR))
TARGET := $(shell basename "$(CURDIR)")
SOURCE := source
BUILD := build