]> git.ipfire.org Git - thirdparty/gettext.git/commitdiff
tests: Check if CXX is "no", not ":"
authorDaiki Ueno <ueno@gnu.org>
Fri, 3 Oct 2014 08:01:36 +0000 (17:01 +0900)
committerDaiki Ueno <ueno@gnu.org>
Fri, 3 Oct 2014 08:02:12 +0000 (17:02 +0900)
* lang-c++: Check if CXX is "no", not ":".  See commit e854d2c7 for
the rationale.

gettext-tools/tests/ChangeLog
gettext-tools/tests/lang-c++

index 4abb90d00f8b9cb880718045b033e76e8af81ba8..22c1a374f776ae35560d9696ae936e198fb1eb5d 100644 (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
index eb2b4dd967a029c3be4af84e201cb6594430d266..65a8a28885d9fd6b4fa410e282296ac4a2ba4e5c 100755 (executable)
@@ -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
 }