From: Bruno Haible Date: Wed, 3 Dec 2003 19:43:46 +0000 (+0000) Subject: Fix a failure of lang-sh and lang-bash when builddir != srcdir. X-Git-Tag: v0.13.1~37 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f05102dd83ec9d941827719f4be1c7a9810f5d5d;p=thirdparty%2Fgettext.git Fix a failure of lang-sh and lang-bash when builddir != srcdir. --- diff --git a/gettext-tools/tests/ChangeLog b/gettext-tools/tests/ChangeLog index f0dd85555..bb2c7bb60 100644 --- a/gettext-tools/tests/ChangeLog +++ b/gettext-tools/tests/ChangeLog @@ -1,3 +1,16 @@ +2003-12-03 Bruno Haible + + * Makefile.am (TESTS_ENVIRONMENT): Add the gettext-runtime/src source + dir to PATH, so that gettext.sh is found. + Reported by Peter Breitenlohner . + +2003-12-03 Bruno Haible + + * xgettext-glade-2: Protect here document against backslash + interpretation. + * xgettext-glade-3: Likewise. + Reported by Paul Jarc . + 2003-12-02 Bruno Haible * xgettext-glade-3: Skip the test if expat is not available. diff --git a/gettext-tools/tests/Makefile.am b/gettext-tools/tests/Makefile.am index ffbe12c9c..b1c0f6a1f 100644 --- a/gettext-tools/tests/Makefile.am +++ b/gettext-tools/tests/Makefile.am @@ -112,7 +112,7 @@ CHECKER = #CHECKER = valgrind --num-callers=20 --leak-check=yes --leak-resolution=high --show-reachable=yes TESTS_ENVIRONMENT = top_srcdir=$(top_srcdir) \ - PATH=.:../src:../../gettext-runtime/src:$$PATH \ + PATH=.:../src:../../gettext-runtime/src:$(top_srcdir)/../gettext-runtime/src:$$PATH \ GETTEXT="$(CHECKER) tstgettext" \ NGETTEXT="$(CHECKER) tstngettext" \ XGETTEXT="$(CHECKER) xgettext" \