aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdrian Frühwirth2018-07-08 11:11:50 +0200
committerAdrian Frühwirth2018-07-08 11:46:03 +0200
commitfd612a537d643026f830cd401d1bf08a7a46f21c (patch)
tree0917ddddfb3ca661e6d30e74139d7fa885c30fed
parentca8b79fa751d1f8eac1e468936cbf1f5d7656674 (diff)
downloadscummvm-rg350-fd612a537d643026f830cd401d1bf08a7a46f21c.tar.gz
scummvm-rg350-fd612a537d643026f830cd401d1bf08a7a46f21c.tar.bz2
scummvm-rg350-fd612a537d643026f830cd401d1bf08a7a46f21c.zip
CONFIGURE: Reword compiler flag checks
-rwxr-xr-xconfigure4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure b/configure
index fdc07066ec..dac4374ce7 100755
--- a/configure
+++ b/configure
@@ -2090,7 +2090,7 @@ esac
# If possible, we want to use -Wglobal-constructors
# However, not all compilers support that, so check whether the active one does.
-echocheck "whether -Wglobal-constructors work"
+echocheck "whether C++ compiler accepts -Wglobal-constructors"
cat > $TMPC << EOF
int main() { return 0; }
EOF
@@ -2107,7 +2107,7 @@ echo $_global_constructors
# change the way we instantiate the singleton classes as done in PR #967.
# Note: we check the -Wundefined-var-template as gcc does not error out on unknown
# -Wno-xxx flags.
-echocheck "whether -Wno-undefined-var-template work"
+echocheck "whether C++ compiler accepts -Wno-undefined-var-template"
cat > $TMPC << EOF
int main() { return 0; }
EOF