Skip to content

Commit

Permalink
arm9/arm11 Makefile: Fix building with spaces in path (#828)
Browse files Browse the repository at this point in the history
This quotes $(CURDIR) which fixes an issue with building GM9 in a path
with spaces, which Windows users are likely to have.
  • Loading branch information
ihaveamac authored Aug 26, 2023
1 parent 14b390a commit ad8b5e0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion arm11/Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
PROCESSOR := ARM11

TARGET := $(shell basename $(CURDIR))
TARGET := $(shell basename "$(CURDIR)")

SOURCE := source
BUILD := build
Expand Down
2 changes: 1 addition & 1 deletion arm9/Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
PROCESSOR := ARM9

TARGET := $(shell basename $(CURDIR))
TARGET := $(shell basename "$(CURDIR)")

SOURCE := source
BUILD := build
Expand Down

0 comments on commit ad8b5e0

Please sign in to comment.