2023-11-11 16:37 UTC+0100 Phil Krylov (phil a t krylov.eu)

* config/win/bcc.mk
    ! Fixed quoting when building under POSIX shell.
This commit is contained in:
Phil Krylov
2023-11-11 16:37:45 +01:00
parent 38c080a960
commit 20483d43ae
2 changed files with 11 additions and 1 deletions

View File

@@ -106,7 +106,13 @@ else
AR := tlib.exe
endif
ARFLAGS += /P128
AR_RULE = $(AR) $(ARFLAGS) $(HB_AFLAGS) $(HB_USER_AFLAGS) "$(subst /,$(BACKSLASH),$(LIB_DIR)/$@)" $(foreach file,$(?F),-+$(file))
ifeq ($(HB_SHELL),sh)
q = '
else
q = "
endif
AR_RULE = $(AR) $(ARFLAGS) $(HB_AFLAGS) $(HB_USER_AFLAGS) $(q)$(subst /,$(BACKSLASH),$(LIB_DIR)/$@)$(q) $(foreach file,$(?F),-+$(file))
ifneq ($(HB_SHELL),sh)
ifeq ($(HB_SHELL_XP),)