Source: jlint Version: 3.0-4.3 Severity: seious Tags: patch Hi,
jlint FTBFS on hppa, sh4 and avr32. https://buildd.debian.org/fetch.cgi?pkg=jlint;ver=3.0-4.3;arch=hppa;stamp=1263727259 http://buildd.debian-ports.org/fetch.php?pkg=jlint&arch=sh4&ver=3.0-4.3&stamp=1263724557&file=log&as=raw http://buildd.debian-ports.org/fetch.php?pkg=jlint&arch=avr32&ver=3.0-4.3&stamp=1263725454&file=log&as=raw ----- [...] g++ -g -lz -o jlint access_desc.o callee_desc.o class_desc.o graph.o jlint.o local_context.o locks.o message_node.o method_desc.o make[1]: Leaving directory `/build/buildd/jlint-3.0' touch build-arch-stamp dh_testdir [ -f manual.pdf.original ] || cp -v manual.pdf manual.pdf.original cp: cannot stat `manual.pdf': No such file or directory make: *** [build-indep-stamp] Error 1 dpkg-buildpackage: error: debian/rules build gave error exit status 2 ****************************************************************************** Build finished at 20100117-1119 FAILED [dpkg-buildpackage died] [...] ----- "make clean" is worked before building package, and manual.pdf file is deleted. Therefore, jlint become FTBFS. I think that this problem was revised with the following patches. ----- --- debian/rules.org 2010-01-20 12:56:38.000000000 +0900 +++ debian/rules 2010-01-20 12:58:05.000000000 +0900 @@ -25,7 +25,7 @@ build-indep-stamp: dh_testdir - [ -f manual.pdf.original ] || cp -v manual.pdf manual.pdf.original + [ ! -f manual.pdf ] || [ -f manual.pdf.original ] || cp -v manual.pdf manual.pdf.original $(MAKE) doc touch build-indep-stamp ----- Or this may be a problem of buildd. Best regards, Nobuhiro -- Nobuhiro Iwamatsu iwamatsu at {nigauri.org / debian.org} GPG ID: 40AD1FA6 -- To UNSUBSCRIBE, email to [email protected] with a subject of "unsubscribe". Trouble? Contact [email protected]

