summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Wilson <chris+github@qwirx.com>2008-01-20 16:47:00 +0000
committerChris Wilson <chris+github@qwirx.com>2008-01-20 16:47:00 +0000
commita47b7a12ecac0389fbcfaf7f0b4fcc42d50f1bc2 (patch)
treee4369a7e27df6c3502cbffbdd97744cd16c9af3d
parent143d57d8e7f974f4d3530c10ba19ee8bf6816874 (diff)
Incorporate CXXFLAGS_STRICT into CXXFLAGS
-rwxr-xr-xinfrastructure/makebuildenv.pl.in12
1 files changed, 6 insertions, 6 deletions
diff --git a/infrastructure/makebuildenv.pl.in b/infrastructure/makebuildenv.pl.in
index 8664f3d7..9fe0a798 100755
--- a/infrastructure/makebuildenv.pl.in
+++ b/infrastructure/makebuildenv.pl.in
@@ -525,19 +525,19 @@ __E
# do not edit!
#
#
-CXX = "@CXX@"
-AR = "@AR@"
-RANLIB = "@RANLIB@"
-PERL = "@PERL@"
+CXX = @CXX@
+AR = @AR@
+RANLIB = @RANLIB@
+PERL = @PERL@
WINDRES = windres
.ifdef RELEASE
-CXXFLAGS = -DNDEBUG $release_flags -Wall -Wundef $include_paths $extra_platform_defines -DBOX_VERSION="\\"$product_version\\""
+CXXFLAGS = -DNDEBUG $release_flags @CXXFLAGS_STRICT@ $include_paths $extra_platform_defines -DBOX_VERSION="\\"$product_version\\""
OUTBASE = ../../release
OUTDIR = ../../release/$mod
DEPENDMAKEFLAGS = -D RELEASE
VARIENT = RELEASE
.else
-CXXFLAGS = -g -Wall -Wundef $include_paths $extra_platform_defines -DBOX_VERSION="\\"$product_version\\""
+CXXFLAGS = -g @CXXFLAGS_STRICT@ $include_paths $extra_platform_defines -DBOX_VERSION="\\"$product_version\\""
OUTBASE = ../../debug
OUTDIR = ../../debug/$mod
DEPENDMAKEFLAGS =