summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn (J5) Palmieri <johnp@redhat.com>2006-08-25 19:59:49 +0000
committerJohn (J5) Palmieri <johnp@redhat.com>2006-08-25 19:59:49 +0000
commitc904d4d5010aff2b33198069d7256c4cfdfff15e (patch)
tree251decb2394d7c333df54f378b622686a65ec669
parent5ee4ac1a303b3c66ff300eef55abd5f5d312cc0a (diff)
* test/Makefile.am: change find to use syntax that works with non
gnu versions of find
-rw-r--r--ChangeLog5
-rw-r--r--test/Makefile.am2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index de683b75..4cf48b71 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
2006-08-25 John (J5) Palmieri <johnp@redhat.com>
+ * test/Makefile.am: change find to use syntax that works with non
+ gnu versions of find
+
+2006-08-25 John (J5) Palmieri <johnp@redhat.com>
+
* dbus/dbus-transport.c: fix invalid deref when checking if
a vtable method exists (Patch from Christian Ehrlicher
<ch dot ehrlicher at gmx dot de>)
diff --git a/test/Makefile.am b/test/Makefile.am
index b4863c7a..5c897797 100644
--- a/test/Makefile.am
+++ b/test/Makefile.am
@@ -91,7 +91,7 @@ TESTDIRS= \
data/equiv-config-files/entities/basic.d
-FIND_TESTS=find -name "*.message" -o -name "*.message-raw" -o -name "*.auth-script" -o -name "*.sha1" -o -name "*.txt" -o -name "*.conf" -o -name "*.service"
+FIND_TESTS=find . -name "*.message" -o -name "*.message-raw" -o -name "*.auth-script" -o -name "*.sha1" -o -name "*.txt" -o -name "*.conf" -o -name "*.service"
dist-hook:
for D in $(TESTDIRS); do \