diff options
author | Bruno Haible <bruno@clisp.org> | 2002-02-04 13:37:31 +0000 |
---|---|---|
committer | Bruno Haible <bruno@clisp.org> | 2009-06-22 01:15:14 +0200 |
commit | e54357669bd7b199f1f6fc665415c3531f7dd834 (patch) | |
tree | ddc1eac9f7130def289721610b8e5e3fda557f0a /tests | |
parent | fa904575cab11b5c01477be70027b2f7dbf5b2ea (diff) | |
download | external_gettext-e54357669bd7b199f1f6fc665415c3531f7dd834.zip external_gettext-e54357669bd7b199f1f6fc665415c3531f7dd834.tar.gz external_gettext-e54357669bd7b199f1f6fc665415c3531f7dd834.tar.bz2 |
Fix for VPATH builds.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/ChangeLog | 5 | ||||
-rw-r--r-- | tests/Makefile.am | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/tests/ChangeLog b/tests/ChangeLog index 5cf32fb..309b0d9 100644 --- a/tests/ChangeLog +++ b/tests/ChangeLog @@ -1,3 +1,8 @@ +2002-02-02 Bruno Haible <bruno@clisp.org> + + * Makefile.am (INCLUDES): Add -I../lib. Needed for builds with + builddir != srcdir on platforms that don't have stdbool.h. + 2002-01-31 Bruno Haible <bruno@clisp.org> * gettext-0.11 released. diff --git a/tests/Makefile.am b/tests/Makefile.am index 0dccbcf..e4c299f 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -112,7 +112,7 @@ xg-test1.ok.po: $(top_srcdir)/src/xgettext.c $(top_srcdir)/src/msgfmt.c \ $(top_srcdir)/src/gettext.c # Three auxiliary programs used by the tests. -INCLUDES = -I.. -I$(top_srcdir)/lib -I$(top_srcdir)/intl +INCLUDES = -I.. -I../lib -I$(top_srcdir)/lib -I$(top_srcdir)/intl DEFS = -DLOCALEDIR=\"$(localedir)\" @DEFS@ LDADD = $(LDADD_@USE_INCLUDED_LIBINTL@) LDADD_yes = ../intl/libintl.la |