Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--config/darwin-config.py4
-rw-r--r--config/openbsd3-config.py4
-rw-r--r--config/sunos5-config.py4
-rw-r--r--config/win32-mingw-config.py2
4 files changed, 7 insertions, 7 deletions
diff --git a/config/darwin-config.py b/config/darwin-config.py
index ccc3eb5a0d0..547d655b531 100644
--- a/config/darwin-config.py
+++ b/config/darwin-config.py
@@ -251,9 +251,9 @@ else:
##
CC = 'gcc'
CXX = 'g++'
-C_WARN = ' -Wall -Wno-long-double -Wdeclaration-after-statement '
+C_WARN = ['-Wdeclaration-after-statement']
-CC_WARN = ' -Wall -Wno-long-double'
+CC_WARN = ['-Wall', '-Wno-long-double']
##FIX_STUBS_WARNINGS = -Wno-unused
diff --git a/config/openbsd3-config.py b/config/openbsd3-config.py
index b2112c84b98..0a4f75e3bcc 100644
--- a/config/openbsd3-config.py
+++ b/config/openbsd3-config.py
@@ -145,9 +145,9 @@ REL_CCFLAGS = ['-O2']
##
CC = 'gcc'
CXX = 'g++'
-C_WARN = '-Wall -Wdeclaration-after-statement'
+C_WARN = ['-Wdeclaration-after-statement']
-CC_WARN = '-Wall'
+CC_WARN = ['-Wall']
##FIX_STUBS_WARNINGS = -Wno-unused
diff --git a/config/sunos5-config.py b/config/sunos5-config.py
index bb6c5d89e46..2343ce69060 100644
--- a/config/sunos5-config.py
+++ b/config/sunos5-config.py
@@ -159,9 +159,9 @@ REL_CCFLAGS = ['-O2']
##ARFLAGS = ruv
##ARFLAGSQUIET = ru
##
-C_WARN = '-Wall -Wno-char-subscripts -Wdeclaration-after-statement'
+C_WARN = ['-Wno-char-subscripts', '-Wdeclaration-after-statement']
-CC_WARN = '-Wall'
+CC_WARN = ['-Wall']
##FIX_STUBS_WARNINGS = -Wno-unused
diff --git a/config/win32-mingw-config.py b/config/win32-mingw-config.py
index d7ecad33bca..bdeca1ddc91 100644
--- a/config/win32-mingw-config.py
+++ b/config/win32-mingw-config.py
@@ -153,7 +153,7 @@ CXXFLAGS = ['-pipe', '-mwindows', '-funsigned-char', '-fno-strict-aliasing' ]
REL_CFLAGS = [ '-O2' ]
REL_CCFLAGS = [ '-O2' ]
-C_WARN = [ '-Wall' , '-Wno-char-subscripts', '-Wdeclaration-after-statement' ]
+C_WARN = [ '-Wno-char-subscripts', '-Wdeclaration-after-statement' ]
CC_WARN = [ '-Wall' ]