From 8947d717a43f3026cf3d246e43698d7ba266feaf Mon Sep 17 00:00:00 2001 From: nyamatongwe Date: Fri, 29 Mar 2002 06:31:33 +0000 Subject: Patch from Ralf Wagner to ensure DIR_O used for resource files. --- win32/scintilla.mak | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/win32/scintilla.mak b/win32/scintilla.mak index 9fac9a7c8..3bc63f0af 100644 --- a/win32/scintilla.mak +++ b/win32/scintilla.mak @@ -162,14 +162,14 @@ $(LEXCOMPONENT): $(LOBJS) $(DIR_O)\ScintRes.res !ELSE -$(COMPONENT): $(SOBJS) ScintRes.res - $(LD) $(LDFLAGS) -Tpd -c c0d32 $(SOBJS), $@, , $(LIBS), , ScintRes.res +$(COMPONENT): $(SOBJS) $(DIR_O)\ScintRes.res + $(LD) $(LDFLAGS) -Tpd -c c0d32 $(SOBJS), $@, , $(LIBS), , $(DIR_O)\ScintRes.res $(DIR_O)\ScintRes.res: ScintRes.rc $(RC) $*.rc -$(LEXCOMPONENT): $(LOBJS) - $(LD) $(LDFLAGS) -Tpd -c c0d32 $(LOBJS), $@, , $(LIBS), , ScintRes.res +$(LEXCOMPONENT): $(LOBJS) $(DIR_O)\ScintRes.res + $(LD) $(LDFLAGS) -Tpd -c c0d32 $(LOBJS), $@, , $(LIBS), , $(DIR_O)\ScintRes.res !ENDIF -- cgit v1.2.3