Package: xdvik-ja Version: 22.84.13-j1.34-2 Severity: normal Tags: patch User: [email protected] Usertags: origin-ubuntu jaunty ubuntu-patch
Hi, Your package doesn't call libtool with --tag=cc when linking. This means that libtool guesses the language, and can get it wrong. On Ubuntu this caused the package to fail to build as the new libtool did guess wrong, and so it refused to link. Adding --tag=cc to the libtool --mode=link call makes sure this doesn't happen. Please consider applying the patch. Thanks, James
--- xdvik-ja-22.84.13-j1.34.orig/debian/patches/50-libtool-tag.patch +++ xdvik-ja-22.84.13-j1.34/debian/patches/50-libtool-tag.patch @@ -0,0 +1,10 @@ +diff -Nur -x '*.orig' -x '*~' xdvik-ja-22.84.13-j1.34/build-tree/xdvik-22.84.13/texk/make/programs.mk xdvik-ja-22.84.13-j1.34.new/build-tree/xdvik-22.84.13/texk/make/programs.mk +--- xdvik-22.84.13/texk/make/programs.mk 2004-03-09 23:16:13.000000000 +0000 ++++ xdvik-22.84.13/texk/make/programs.mk 2009-01-15 14:57:02.000000000 +0000 +@@ -15,5 +15,5 @@ + + # When we link with Kpathsea, have to take account that it might be a + # shared library, etc. +-kpathsea_link = $(LIBTOOL) --mode=link $(link_command) ++kpathsea_link = $(LIBTOOL) --mode=link --tag=cc $(link_command) + # End of programs.mk.

