diff options
author | Sergei Golubchik <serg@mariadb.org> | 2019-06-16 19:42:59 +0200 |
---|---|---|
committer | Sergei Golubchik <serg@mariadb.org> | 2019-06-17 12:26:26 +0200 |
commit | da619f010f2fc8554b1df5724e1d344442df1b3d (patch) | |
tree | c233239500760b13cc204ca8c007237f3afc4d62 /storage | |
parent | 20bb4ed15e6d4fa93575e6646b9c7c781346b7a8 (diff) | |
download | mariadb-git-da619f010f2fc8554b1df5724e1d344442df1b3d.tar.gz |
compilation fix for fulltest-big
Diffstat (limited to 'storage')
-rw-r--r-- | storage/oqgraph/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/storage/oqgraph/CMakeLists.txt b/storage/oqgraph/CMakeLists.txt index 6199a648c2c..68582e2802d 100644 --- a/storage/oqgraph/CMakeLists.txt +++ b/storage/oqgraph/CMakeLists.txt @@ -38,7 +38,7 @@ IF(MSVC) ADD_DEFINITIONS(-DJU_WIN) ELSE(MSVC) # Fix lp bug 1221555 with -fpermissive, so that errors in gcc 4.7 become warnings for the time being - STRING(REPLACE "-fno-exceptions" "" CMAKE_CXX_FLAGS ${CMAKE_CXX_FLAGS}) + STRING(REPLACE "-fno-exceptions" "" CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}") SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-deprecated -fno-strict-aliasing -fpermissive") ENDIF(MSVC) |