From 8329a9fec9229bdda61493f88be867219d6b0385 Mon Sep 17 00:00:00 2001 From: ArkadiuszMichalski <2730894+ArkadiuszMichalski@users.noreply.github.com> Date: Mon, 6 May 2024 12:16:57 +0200 Subject: [PATCH] Build: use DIR_O in nppSpecifics.mak properly Fix #15086, close #15095 --- boostregex/nppSpecifics.mak | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/boostregex/nppSpecifics.mak b/boostregex/nppSpecifics.mak index 4da427033..0a692f9a6 100644 --- a/boostregex/nppSpecifics.mak +++ b/boostregex/nppSpecifics.mak @@ -1,6 +1,6 @@ # This makefile should be included in the main scintilla.mak file, -# just after where LOBJS is defined (around line -# +# just after where LOBJS is defined (around line +# # The following line should be added around line 211 of scintilla.mak # !INCLUDE nppSpecifics.mak @@ -19,8 +19,8 @@ CXXFLAGS=$(CXXFLAGS) -DSCI_OWNREGEX $(DIR_O)\UTF8DocumentIterator.obj:: ../../boostregex/UTF8DocumentIterator.cxx - $(CC) $(CXXFLAGS) -D_SILENCE_ALL_CXX17_DEPRECATION_WARNINGS -c ../../boostregex/UTF8DocumentIterator.cxx - -$(DIR_O)\BoostRegexSearch.obj:: ../../boostregex/BoostRegexSearch.cxx ../src/CharClassify.h ../src/RESearch.h - $(CC) $(CXXFLAGS) -D_SILENCE_ALL_CXX17_DEPRECATION_WARNINGS -c ../../boostregex/BoostRegexSearch.cxx + $(CXX) $(CXXFLAGS) -D_SILENCE_ALL_CXX17_DEPRECATION_WARNINGS -c -Fo$@ %s + +$(DIR_O)\BoostRegexSearch.obj:: ../../boostregex/BoostRegexSearch.cxx ../src/CharClassify.h ../src/RESearch.h + $(CXX) $(CXXFLAGS) -D_SILENCE_ALL_CXX17_DEPRECATION_WARNINGS -c -Fo$@ %s