diff options
author | Matt Caswell <matt@openssl.org> | 2015-01-08 20:05:43 +0100 |
---|---|---|
committer | Matt Caswell <matt@openssl.org> | 2015-01-08 20:21:24 +0100 |
commit | 5c5e7e1a7eb114cf136e1ae4b6a413bc48ba41eb (patch) | |
tree | d9399cb8e1df8035b613b45b432d4c2d1ec98a85 /util/mkbuildinf.pl | |
parent | A memory leak can occur in dtls1_buffer_record if either of the calls to (diff) | |
download | openssl-5c5e7e1a7eb114cf136e1ae4b6a413bc48ba41eb.tar.xz openssl-5c5e7e1a7eb114cf136e1ae4b6a413bc48ba41eb.zip |
Fix build failure on Windows due to undefined cflags identifier
Reviewed-by: Tim Hudson <tjh@openssl.org>
Diffstat (limited to '')
-rwxr-xr-x | util/mkbuildinf.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/mkbuildinf.pl b/util/mkbuildinf.pl index 9d7b81c76e..ffa8a39933 100755 --- a/util/mkbuildinf.pl +++ b/util/mkbuildinf.pl @@ -7,7 +7,7 @@ $date = localtime(); print <<"END_OUTPUT"; #ifndef MK1MF_BUILD /* auto-generated by util/mkbuildinf.pl for crypto/cversion.c */ - #define CFLAGS + #define CFLAGS cflags /* * Generate CFLAGS as an array of individual characters. This is a * workaround for the situation where CFLAGS gets too long for a C90 string |