hi again, On Sat, May 21, 2005 at 06:47:19PM +0200, Michael Ablassmeier wrote: > it seems like cdbs trys to patch within the first one (which is empty) > and therefore fails to find the files.
the cause for this is the following statement in debian/rules: DEB_TAR_SRCDIR=$(shell ls clearsilver-* | sed -e 's/\.tar.*//') which will output: [EMAIL PROTECTED]:~/310073/clearsilver-0.9.13$ ls clearsilver-* | sed -e 's/\.tar.*//' clearsilver-0.9.13 clearsilver-0.9.13 because there are: ./clearsilver-0.9.13.tar.gz ./clearsilver-0.9.13.tar.gz.cdbs-config_list patch for debian/rules attached. bye, - michael
--- rules.orig 2005-05-21 18:53:06.861077608 +0200 +++ rules 2005-05-21 18:53:16.364632848 +0200 @@ -1,6 +1,6 @@ #!/usr/bin/make -f -DEB_TAR_SRCDIR=$(shell ls clearsilver-* | sed -e 's/\.tar.*//') +DEB_TAR_SRCDIR=$(shell ls clearsilver-* | sed -e 's/\.tar.*//' | head -1) DEB_MAKE_CHECK_TARGET=( i386 ia64 ) include /usr/share/cdbs/1/rules/tarball.mk