From: Bruno Haible Date: Wed, 1 Jan 2020 15:53:26 +0000 (+0100) Subject: locale C++ tests: Fix link error on AIX (regression from 2019-12-18). X-Git-Tag: v1.0~4405 X-Git-Url: https://gitweb.git.savannah.gnu.org/gitweb/?a=commitdiff_plain;h=d325c7f69574f24587a6673fb11164d84bef89fa;p=gnulib.git locale C++ tests: Fix link error on AIX (regression from 2019-12-18). * modules/locale-c++-tests (Makefile.am): Link test-locale-c++ with $(LIB_SETLOCALE). --- diff --git a/ChangeLog b/ChangeLog index 0bde2392a8..88e602f6f6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2020-01-01 Bruno Haible + + locale C++ tests: Fix link error on AIX (regression from 2019-12-18). + * modules/locale-c++-tests (Makefile.am): Link test-locale-c++ with + $(LIB_SETLOCALE). + 2020-01-01 Bruno Haible hard-locale tests: Fix a conflict with the C++ tests. diff --git a/modules/locale-c++-tests b/modules/locale-c++-tests index 684402d60c..1b6b7d9250 100644 --- a/modules/locale-c++-tests +++ b/modules/locale-c++-tests @@ -16,4 +16,5 @@ if ANSICXX TESTS += test-locale-c++ check_PROGRAMS += test-locale-c++ test_locale_c___SOURCES = test-locale-c++.cc test-locale-c++2.cc +test_locale_c___LDADD = $(LDADD) $(LIB_SETLOCALE) endif