mirror of
https://github.com/d0k3/GodMode9.git
synced 2025-06-25 21:22:47 +00:00
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:
parent
14b390a943
commit
ad8b5e0a8c
@ -1,6 +1,6 @@
|
||||
PROCESSOR := ARM11
|
||||
|
||||
TARGET := $(shell basename $(CURDIR))
|
||||
TARGET := $(shell basename "$(CURDIR)")
|
||||
|
||||
SOURCE := source
|
||||
BUILD := build
|
||||
|
@ -1,6 +1,6 @@
|
||||
PROCESSOR := ARM9
|
||||
|
||||
TARGET := $(shell basename $(CURDIR))
|
||||
TARGET := $(shell basename "$(CURDIR)")
|
||||
|
||||
SOURCE := source
|
||||
BUILD := build
|
||||
|
Loading…
x
Reference in New Issue
Block a user