tags 474412 + patch thanks Hi,
the "clean" target of debian/rules tries to run "rm -f bin". As bin is a directory, this needs to be changed to "rm -rf bin". The attached patch does just that. The package builds then fine on i386 and amd64. Build logs can be found at: http://servercare.de/debian/logs/galleta_i386_2008-04-28-1209413668.log http://servercare.de/debian/logs/galleta_amd64_2008-04-28-1209413589.log Regards, Sebastian
--- galleta-1.0+20040505.orig/debian/rules 2008-04-28 22:10:59.000000000 +0200 +++ galleta-1.0+20040505/debian/rules 2008-04-28 22:10:02.000000000 +0200 @@ -6,7 +6,7 @@ rm -f build-stamp $(MAKE) -C src clean - rm -f bin + rm -rf bin dh_clean