tags 483323 +patch
thanks

The FTBFS happens because lucas's rebuilder does not use the packagename-upstreamversion naming convention for the directory containing the extracted package. This causes the following two lines in debian/rules to give wrong results eventually resulting in a FTBFS.

version=$(shell expr `pwd` : '.*-\([0-9.]*\)')
version_major=$(shell expr `pwd` : '.*-\([0-9]*\).[0-9.]*')

replace them with

version:=$(shell dpkg-parsechangelog | grep Version: | cut -d ' ' -f 2 | cut -d '-' -f 1)
version_major:=$(shell echo $(version) | cut -d '.' -f 1)

to determine the version in a more robust manner and hence fix this bug.



--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to