Skip to content

Commit

Permalink
2023-11-11 16:37 UTC+0100 Phil Krylov (phil a t krylov.eu)
Browse files Browse the repository at this point in the history
  * config/win/bcc.mk
    ! Fixed quoting when building under POSIX shell.
  • Loading branch information
tuffnatty committed Nov 11, 2023
1 parent 38c080a commit 20483d4
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
4 changes: 4 additions & 0 deletions ChangeLog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@
Entries may not always be in chronological/commit order.
See license at the end of file. */

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.

2023-11-11 16:00 UTC+0100 Phil Krylov (phil a t krylov.eu)
* .github/workflows/linux-ci.yml
* .github/workflows/macos-ci.yml
Expand Down
8 changes: 7 additions & 1 deletion config/win/bcc.mk
Original file line number Diff line number Diff line change
Expand Up @@ -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),)
Expand Down

0 comments on commit 20483d4

Please sign in to comment.