summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDana Robinson <derobins@hdfgroup.org>2019-08-04 16:22:08 (GMT)
committerDana Robinson <derobins@hdfgroup.org>2019-08-04 16:22:08 (GMT)
commitab1ce69900caa0b249e07db8992e66f95b0af1dc (patch)
treeb99cf908fe28749bb9afb2ac89b038bce76a5080
parenta1c9d22ca929a348e5508b1a4f95c1ac50a1b833 (diff)
parent4cd461168ef6dbd799792b1893c41dccebae59f9 (diff)
downloadhdf5-ab1ce69900caa0b249e07db8992e66f95b0af1dc.zip
hdf5-ab1ce69900caa0b249e07db8992e66f95b0af1dc.tar.gz
hdf5-ab1ce69900caa0b249e07db8992e66f95b0af1dc.tar.bz2
Merge pull request #1838 in HDFFV/hdf5 from ~DEROBINS/hdf5_der:develop_minor_pr to develop
* commit '4cd461168ef6dbd799792b1893c41dccebae59f9': Fixed warning typo
-rw-r--r--config/cmake/HDFCompilerFlags.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/config/cmake/HDFCompilerFlags.cmake b/config/cmake/HDFCompilerFlags.cmake
index d658c48..aea417a 100644
--- a/config/cmake/HDFCompilerFlags.cmake
+++ b/config/cmake/HDFCompilerFlags.cmake
@@ -210,7 +210,7 @@ if (NOT MSVC AND CMAKE_COMPILER_IS_GNUCC)
# Append more extra warning flags that only gcc 9.x+ know about
if (CMAKE_C_COMPILER_ID STREQUAL "GNU" AND NOT CMAKE_C_COMPILER_VERSION VERSION_LESS 9.0)
- set (H5_CFLAGS4 "${H5_CFLAGS4} Wattribute-alias=2 -Wmissing-profile")
+ set (H5_CFLAGS4 "${H5_CFLAGS4} -Wattribute-alias=2 -Wmissing-profile")
endif ()
endif ()