* test/Makefile.am: change find to use syntax that works with non

gnu versions of find
This commit is contained in:
John (J5) Palmieri 2006-08-25 19:59:49 +00:00
parent 5ee4ac1a30
commit c904d4d501
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
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

View file

@ -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 \