Skip to content

Commit

Permalink
arm9/arm11 Makefile: Fix building with spaces in path (d0k3#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 and MisterSheeple committed Apr 19, 2024
1 parent c7e5a7d commit ee7d0fd
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 ee7d0fd

Please sign in to comment.