mirror of
https://github.com/coop-deluxe/sm64coopdx.git
synced 2025-10-30 08:01:01 +00:00
Fix building in directories with special characters (#632)
This commit is contained in:
parent
eebc9ee4fd
commit
884c39950f
1 changed files with 1 additions and 1 deletions
2
Makefile
2
Makefile
|
|
@ -989,7 +989,7 @@ endif
|
|||
|
||||
IS_DEV_OR_DEBUG := $(or $(filter 1,$(DEVELOPMENT)),$(filter 1,$(DEBUG)),0)
|
||||
ifeq ($(IS_DEV_OR_DEBUG),0)
|
||||
CFLAGS += -fno-ident -fno-common -ffile-prefix-map=$(PWD)=. -D__DATE__="\"\"" -D__TIME__="\"\"" -Wno-builtin-macro-redefined
|
||||
CFLAGS += -fno-ident -fno-common -ffile-prefix-map="$(PWD)"=. -D__DATE__="\"\"" -D__TIME__="\"\"" -Wno-builtin-macro-redefined
|
||||
LDFLAGS += -Wl,--build-id=none
|
||||
endif
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue