From: Steve Hay Date: Sat, 7 Nov 2009 14:51:44 +0000 (+0000) Subject: Avoid circularity in $(LIBBASEFILES) definition in Win32 dmake makefile X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=d541574574df104c39aaaba6d251728919eacd38;p=p5sagit%2Fp5-mst-13.2.git Avoid circularity in $(LIBBASEFILES) definition in Win32 dmake makefile --- 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