Index: quilt/scripts/patchfns.in =================================================================== RCS file: /sources/quilt/quilt/quilt/scripts/patchfns.in,v retrieving revision 1.10 diff -u -r1.10 patchfns.in --- quilt/scripts/patchfns.in 24 Jan 2006 02:32:31 -0000 1.10 +++ quilt/scripts/patchfns.in 26 Jan 2006 12:35:37 -0000 @@ -594,9 +594,11 @@ if [ -d "$path" ] then - find "$path" -type f \ - -a ! -path "$path/.timestamp" \ - -printf "%P\n" + local files + files=( $(find "$path" -type f \ + -a ! -path "$path/.timestamp") ) \ + || return 1 + printf "%s\n" "address@hidden/}" fi }