File: no-Werror.patch

package info (click to toggle)
rclone-browser 1.8.0-7
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 1,192 kB
  • sloc: cpp: 4,327; sh: 161; xml: 50; python: 24; makefile: 7
file content (15 lines) | stat: -rw-r--r-- 469 bytes parent folder | download | duplicates (4)
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)