Fix building in directories with special characters (#632)

This commit is contained in:
John S 2025-01-15 04:35:26 -05:00 committed by GitHub
parent eebc9ee4fd
commit 884c39950f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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