From 7cb58c0ffa7203e8ad4d39c912a1ab5e21a12b85 Mon Sep 17 00:00:00 2001 From: Kurt Roeckx Date: Sat, 3 Dec 2016 16:57:04 +0100 Subject: [PATCH] Also set the CXXFLAG to the user supplied flags Reviewed-by: Rich Salz GH: #2025 --- Configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Configure b/Configure index 45b4175483..896d4d4545 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; } -- 2.25.1