diff options
author | Andres Freund | 2018-03-22 01:41:08 +0000 |
---|---|---|
committer | Andres Freund | 2018-03-22 01:41:08 +0000 |
commit | 4317cc68a284f041abc583ced4ef7ede2f73fb51 (patch) | |
tree | 8ea1b65866b59ca77d0635ba50e26b25bae3af19 /configure | |
parent | a02671cfdeac3bb86ebf8f8577faf69730c4f80e (diff) |
Fix typo in BITCODE_CXXFLAGS assignment.
Typoed-In: 5b2526c83832e
Reported-By: Catalin Iacob
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure index 409fdc1ed69..6f659a5915e 100755 --- a/configure +++ b/configure @@ -5114,7 +5114,7 @@ fi if test "$ac_env_BITCODE_CXXFLAGS_set" = set; then BITCODE_CXXFLAGS=$ac_env_BITCODE_CXXFLAGS_value else - BITCODE_CXXFLAGS="-O2 BITCODE_CXXFLAGS" + BITCODE_CXXFLAGS="-O2 $BITCODE_CXXFLAGS" fi # C[XX]FLAGS we determined above will be added back at the end |