From: Kurt Roeckx Date: Sat, 3 Dec 2016 15:57:04 +0000 (+0100) Subject: Also set the CXXFLAG to the user supplied flags X-Git-Tag: OpenSSL_1_1_1-pre1~2925 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7cb58c0ffa7203e8ad4d39c912a1ab5e21a12b85;p=thirdparty%2Fopenssl.git Also set the CXXFLAG to the user supplied flags Reviewed-by: Rich Salz GH: #2025 --- diff --git a/Configure b/Configure index 45b41754836..896d4d4545f 100755 --- a/Configure +++ b/Configure @@ -1305,7 +1305,7 @@ unless ($disabled{"crypto-mdebug-backtrace"}) } } -if ($user_cflags ne "") { $config{cflags}="$config{cflags}$user_cflags"; } +if ($user_cflags ne "") { $config{cflags}="$config{cflags}$user_cflags"; $config{cxxflags}="$config{cxxflags}$user_cflags";} else { $no_user_cflags=1; } if (@user_defines) { $config{defines}=[ @{$config{defines}}, @user_defines ]; } else { $no_user_defines=1; }