forked from Mirror/GodMode9
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
|
PROCESSOR := ARM11
|
||||||
|
|
||||||
TARGET := $(shell basename $(CURDIR))
|
TARGET := $(shell basename "$(CURDIR)")
|
||||||
|
|
||||||
SOURCE := source
|
SOURCE := source
|
||||||
BUILD := build
|
BUILD := build
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
PROCESSOR := ARM9
|
PROCESSOR := ARM9
|
||||||
|
|
||||||
TARGET := $(shell basename $(CURDIR))
|
TARGET := $(shell basename "$(CURDIR)")
|
||||||
|
|
||||||
SOURCE := source
|
SOURCE := source
|
||||||
BUILD := build
|
BUILD := build
|
||||||
|
Loading…
x
Reference in New Issue
Block a user