Package: cherokee Version: 0.5.6-3 Severity: normal Tags: patch User: [EMAIL PROTECTED] Usertags: origin-ubuntu ubuntu-patch hardy
Hello, your package FTBFS in Ubuntu as debian/rules contains some bashism: ,----[ from the Ubuntu build log ]- | # During the build process, we created many directories we don't need | # anymore, as their files were either removed or moved to other binary | # packages. Clean them as well. | rm -r | /build/buildd/cherokee-0.5.6/debian/tmp/usr/{share/{cherokee,aclocal},include,lib,bin} | rm: cannot remove | `/build/buildd/cherokee-0.5.6/debian/tmp/usr/{share/{cherokee,aclocal},include,lib,bin}': | No such file or directory | make: *** [install-arch] Error 1 | dpkg-buildpackage: failure: /usr/bin/fakeroot debian/rules binary gave | error exit status 2 | ****************************************************************************** | Build finished at 20071212-1754 | FAILED [dpkg-buildpackage died] `---- Attached is the patch I applied to get it build in Ubuntu. Regards, Michael diff -u cherokee-0.5.6/debian/rules cherokee-0.5.6/debian/rules --- cherokee-0.5.6/debian/rules +++ cherokee-0.5.6/debian/rules @@ -218,7 +218,8 @@ # During the build process, we created many directories we don't need # anymore, as their files were either removed or moved to other binary # packages. Clean them as well. - rm -r $(BUILD_DIR)/usr/{share/{cherokee,aclocal},include,lib,bin} + rm -r $(BUILD_DIR)/usr/share/cherokee $(BUILD_DIR)/usr/share/aclocal + rm -r $(BUILD_DIR)/usr/include $(BUILD_DIR)/usr/lib $(BUILD_DIR)/usr/bin # Whatever we still have in $(BUILD_DIR) will become the main Cherokee # package - Just create the directory for the log files -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]