diff options
author | Steve Hay <SteveHay@planit.com> | 2009-11-07 14:51:44 +0000 |
---|---|---|
committer | Steve Hay <SteveHay@planit.com> | 2009-11-07 14:51:44 +0000 |
commit | d541574574df104c39aaaba6d251728919eacd38 (patch) | |
tree | 9eacdf1a8083c314c6767cba0e41131c4554cc90 /win32 | |
parent | 3247c18889f5c199c8975b9969bcd63491a4ed02 (diff) | |
download | perl-d541574574df104c39aaaba6d251728919eacd38.tar.gz |
Avoid circularity in $(LIBBASEFILES) definition in Win32 dmake makefile
Diffstat (limited to 'win32')
-rw-r--r-- | win32/makefile.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win32/makefile.mk b/win32/makefile.mk index 452cdc1b07..d46db1b2c3 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 |