Source: gamgi Version: 0.15-3 Severity: serious Tags: patch Hi,
gamgi FTBFS on non amd64 . https://buildd.debian.org/status/package.php?p=gamgi&suite=unstable ----- make[1]: Entering directory `/build/buildd-gamgi_0.15-3-alpha-hK5CVL/gamgi-0.15' find . -name \*.o | xargs rm -f rm -f src/global/gamgi.real src/gamgi.real gamgi.1 [ ! -f src/make_local.orig ] || cp -a src/make_local.orig src/make_local make[1]: Leaving directory `/build/buildd-gamgi_0.15-3-alpha-hK5CVL/gamgi-0.15' debian/rules build dh build --parallel dh_testdir -O--parallel debian/rules override_dh_auto_configure make[1]: Entering directory `/build/buildd-gamgi_0.15-3-alpha-hK5CVL/gamgi-0.15' cp -a override_dh_auto_configure src/make_local.orig cp: cannot stat `override_dh_auto_configure': No such file or directory make[1]: *** [override_dh_auto_configure] Error 1 make[1]: Leaving directory `/build/buildd-gamgi_0.15-3-alpha-hK5CVL/gamgi-0.15' make: *** [build] Error 2 dpkg-buildpackage: error: debian/rules build gave error exit status 2 ----- I attached the patch which revise this problem. Could you check and apply this patch? Best regards, Nobuhiro
diff -Nru gamgi-0.15/debian/changelog gamgi-0.15/debian/changelog --- gamgi-0.15/debian/changelog 2011-02-14 07:18:55.000000000 +0900 +++ gamgi-0.15/debian/changelog 2011-02-16 11:42:38.000000000 +0900 @@ -1,3 +1,10 @@ +gamgi (0.15-3.1) unstable; urgency=low + + * Non-maintainer upload. + * Fix FTBFS on all architecture. + + -- Nobuhiro Iwamatsu <iwama...@debian.org> Wed, 16 Feb 2011 11:54:17 +0900 + gamgi (0.15-3) unstable; urgency=low * debian/compat: Increased compatibility level to 7. diff -Nru gamgi-0.15/debian/rules gamgi-0.15/debian/rules --- gamgi-0.15/debian/rules 2011-02-14 07:09:06.000000000 +0900 +++ gamgi-0.15/debian/rules 2011-02-16 12:01:56.000000000 +0900 @@ -11,10 +11,10 @@ $(RM) src/global/gamgi.real src/gamgi.real gamgi.1 [ ! -f src/make_local.orig ] || cp -a src/make_local.orig src/make_local -override_dh_auto_configure: src/make_local +override_dh_auto_configure: ifneq ($(DEB_BUILD_ARCH),amd64) - cp -a $@ src/make_local.orig - sed -i 's/lib64/lib/g' $@ + cp -a src/make_local src/make_local.orig + sed -i 's/lib64/lib/g' src/make_local endif dh_auto_configure