From: John (J5) Palmieri Date: Fri, 25 Aug 2006 19:59:49 +0000 (+0000) Subject: * test/Makefile.am: change find to use syntax that works with non X-Git-Tag: dbus-0.93~28 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c904d4d5010aff2b33198069d7256c4cfdfff15e;p=platform%2Fupstream%2Fdbus.git * test/Makefile.am: change find to use syntax that works with non gnu versions of find --- diff --git a/ChangeLog b/ChangeLog index de683b7..4cf48b7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,10 @@ 2006-08-25 John (J5) Palmieri + * test/Makefile.am: change find to use syntax that works with non + gnu versions of find + +2006-08-25 John (J5) Palmieri + * dbus/dbus-transport.c: fix invalid deref when checking if a vtable method exists (Patch from Christian Ehrlicher ) diff --git a/test/Makefile.am b/test/Makefile.am index b4863c7..5c89779 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 \