tests: Check if CXX is "no", not ":"

* lang-c++: Check if CXX is "no", not ":".  See commit e854d2c7 for
the rationale.
This commit is contained in:
Daiki Ueno
2014-10-03 17:01:36 +09:00
parent e854d2c7f6
commit a9be7bd5e3
2 changed files with 6 additions and 1 deletions
+5
View File
@@ -1,3 +1,8 @@
2014-10-03 Daiki Ueno <ueno@gnu.org>
* lang-c++: Check if CXX is "no", not ":". See commit e854d2c7
for the rationale.
2014-10-02 Daiki Ueno <ueno@gnu.org>
* autopoint-3: Invoke AC_CONFIG_MACRO_DIR after AC_INIT, not
+1 -1
View File
@@ -6,7 +6,7 @@
# Assumes the following packages are installed: gcc g++.
# Test whether a C++ compiler is found and libasprintf is built.
test "${CXX}" != ":" || {
test "${CXX}" != "no" || {
echo "Skipping test: no C++ compiler found"
exit 77
}