File: missing-warning.patch

package info (click to toggle)
eckit 1.32.4-1
  • links: PTS
  • area: main
  • in suites:
  • size: 305,880 kB
  • sloc: cpp: 111,654; ansic: 2,826; yacc: 590; lex: 361; python: 237; sh: 202; makefile: 41
file content (16 lines) | stat: -rw-r--r-- 677 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Description: Use ecbuild_info(), ecbuild_warning() currently doesn't exist
Author: Alastair McKinstry <mckinstry@debian.org>
Last-Updated: 2020-09-18
Forwarded: no

--- a/cmake/check_time_t_Y2038.cmake
+++ b/cmake/check_time_t_Y2038.cmake
@@ -7,7 +7,7 @@
     ecbuild_info("time_t size ${ECKIT_SIZEOF_TIME_T}")
 else()
 	# once we are closer to 2038 we will upgrade this to a critical error using ecbuild_critical()
-	ecbuild_warning("This system time_t has size ${ECKIT_SIZEOF_TIME_T} and therefore suffers from Y2038 problem" )
+	ecbuild_info("This system time_t has size ${ECKIT_SIZEOF_TIME_T} and therefore suffers from Y2038 problem" )
 endif()
 
 cmake_pop_check_state()