severity 473604 minor quit On Mon, Mar 31, 2008 at 05:33:28PM +0200, Sven Marnach wrote: > starting in line 666 of /usr/bin/git-gui, the current git version is > checked using a bunch of regexps. This code seems to be unable to > handle the current git version string, causing git-gui to complain on > every startup. > > The package was built from the debian-experimental branch of the > repository at http://smarden.org/git/git.git/ > Hope I didn't break it myself :)
> [EMAIL PROTECTED]:~> git --version > git version debian.1.5.5_rc2.1 Hi Sven, this might happen if you build the Debian package directly out of the git repo (.git/ exists). The git repo doesn't track the ./version file, causing the build process to use 'git describe' when creating ./GIT-VERSION-FILE through ./GIT-VERSION-GEN. You can work around this by creating the ./version file (which is also in the .orig.tar.gz's) before building a Debian package, e.g. $ echo v1.5.5-rc2 >version Regards, Gerrit. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

