From d541574574df104c39aaaba6d251728919eacd38 Mon Sep 17 00:00:00 2001 From: Steve Hay Date: Sat, 7 Nov 2009 14:51:44 +0000 Subject: [PATCH] Avoid circularity in $(LIBBASEFILES) definition in Win32 dmake makefile --- win32/makefile.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/win32/makefile.mk b/win32/makefile.mk index 452cdc1..d46db1b 100644 --- a/win32/makefile.mk +++ b/win32/makefile.mk @@ -610,7 +610,7 @@ LIBBASEFILES = $(CRYPT_LIB) \ # Since the code links against libraries that are compiled with /GS, this # "security cookie verification" must be included via bufferoverlow.lib. .IF "$(WIN64)" == "define" -LIBBASEFILES = $(LIBBASEFILES) bufferoverflowU.lib +LIBBASEFILES += bufferoverflowU.lib .ENDIF # we add LIBC here, since we may be using PerlCRT.dll -- 2.7.4