Skip to content

Commit

Permalink
minor typo in Makefile for nmake, it doesn't support +=
Browse files Browse the repository at this point in the history
  • Loading branch information
truemedian authored and squeek502 committed Jul 22, 2024
1 parent 938eb53 commit e085c38
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -162,11 +162,11 @@ ifdef MAKEDIR: ########################
!ifdef MAKEDIR #### Start of nmake ####

!ifdef GENERATOR
CONFIGURE_FLAGS += -G"$(GENERATOR)"
CONFIGURE_FLAGS = "$(CONFIGURE_FLAGS) -G$(GENERATOR)"
!endif

!ifdef ARCH
CONFIGURE_FLAGS += -A"$(ARCH)"
CONFIGURE_FLAGS = "$(CONFIGURE_FLAGS) -A$(ARCH)"
!endif

!else #### End of nmake ####
Expand Down

0 comments on commit e085c38

Please sign in to comment.