Package: donkey Severity: important Tags: patch Hi,
currently your package FTBFS on GNU/kFreeBSD with the following error: > Set up obj/GNUkFreeBSD.6.2-1-686 ... > Done > To make donkey for GNUkFreeBSD.6.2-1-686, type: > cd obj/GNUkFreeBSD.6.2-1-686 > ./configure > make > cd obj/GNU/kFreeBSD.6.2-1-686 && sh ./configure && /usr/bin/make > /bin/sh: line 0: cd: obj/GNU/kFreeBSD.6.2-1-686: No such file or directory > make: *** [build-stamp] Error 1 Full build logs are available at <http://experimental.ftbfs.de/build.php?arch=kfreebsd-i386&pkg=donkey>. Please find attached a tiny patch to use the same trick as in ./setup (deletion of the '/' character), which is a variant of the well-known GNU/kFreeBSD's "replace '/' by '_'". Cheers, -- Cyril Brulebois
--- donkey-0.5/debian/rules 2007-03-11 07:51:15.000000000 +0100 +++ donkey-0.5/debian/rules 2007-03-11 07:51:18.000000000 +0100 @@ -6,7 +6,7 @@ # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 -sysname=$(shell uname -s) +sysname=$(shell uname -s| sed -e 's/\///') revname=$(shell uname -r) objdir=obj/$(sysname).$(revname)