Skip to content

Commit

Permalink
cmake: minor rewording
Browse files Browse the repository at this point in the history
  • Loading branch information
illwieckz committed Dec 19, 2024
1 parent 20b52dd commit a38a469
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmake/DaemonFlags.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ else()
# complain that the compiler doesn't support 'long long'.
try_c_flag(GNU99 "-std=gnu99")
if (NOT FLAG_GNU99)
message(FATAL_ERROR "GNU99 or C99 not supported by compiler")
message(FATAL_ERROR "GNU99 is not supported by the compiler")
endif()
endif()

Expand All @@ -226,7 +226,7 @@ else()
if (NOT FLAG_GNUXX14)
try_cxx_flag(GNUXX1Y "-std=gnu++1y")
if (NOT FLAG_GNUXX1Y)
message(FATAL_ERROR "GNU++14 or C++14 not supported by compiler")
message(FATAL_ERROR "GNU++14 is not supported by the compiler")
endif()
endif()
endif()
Expand Down

0 comments on commit a38a469

Please sign in to comment.