summarylogtreecommitdiffstats
path: root/no-Werror.patch
blob: 976e5cf5d1b3edd52da150416517f484ff3d4d40 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Description: Build without -Werror
Author: Adrian Bunk <bunk@debian.org>
Bug-Debian: https://bugs.debian.org/973786

--- rclone-browser-1.8.0.orig/src/CMakeLists.txt
+++ rclone-browser-1.8.0/src/CMakeLists.txt
@@ -10,7 +10,7 @@ endif()
 if(WIN32)
   set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /W4 /WX /wd4100 /wd4189")
 else()
-  add_definitions("-pedantic -Wall -Wextra -Werror -std=c++11")
+  add_definitions("-pedantic -Wall -Wextra -std=c++11")
 endif()
 
 if (APPLE)