summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHavoc Pennington <hp@redhat.com>2003-01-15 18:30:12 +0000
committerHavoc Pennington <hp@redhat.com>2003-01-15 18:30:12 +0000
commit8c11bc06710d4981172ca570ba41cd923efffc7a (patch)
tree67c0a735702ffa2469a23cc4f959f8d20fd8bc4b
parent657b960244d317d56d37a0f8095337248b1f6aa8 (diff)
2003-01-15 Havoc Pennington <hp@redhat.com>
* test/Makefile.am: fix so that test source code ends up in the distribution on make distcheck
-rw-r--r--ChangeLog5
-rw-r--r--test/Makefile.am11
2 files changed, 12 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 79656054..37e4e70b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
2003-01-15 Havoc Pennington <hp@redhat.com>
+ * test/Makefile.am: fix so that test source code ends up in the
+ distribution on make distcheck
+
+2003-01-15 Havoc Pennington <hp@redhat.com>
+
Release 0.1.
* NEWS: update
diff --git a/test/Makefile.am b/test/Makefile.am
index 12698473..f9d320af 100644
--- a/test/Makefile.am
+++ b/test/Makefile.am
@@ -1,9 +1,13 @@
-if DBUS_BUILD_TESTS
-
INCLUDES=-I$(top_srcdir) $(DBUS_TEST_CFLAGS)
-noinst_PROGRAMS= echo-client echo-server
+if DBUS_BUILD_TESTS
+TESTS=echo-client echo-server
+else
+TESTS=
+endif
+
+noinst_PROGRAMS= $(TESTS)
echo_client_SOURCES= \
echo-client.c \
@@ -20,4 +24,3 @@ TEST_LIBS=$(DBUS_TEST_LIBS) $(top_builddir)/dbus/libdbus-convenience.la $(top_bu
echo_client_LDADD=$(TEST_LIBS)
echo_server_LDADD=$(TEST_LIBS)
-endif