Source: file-kanji Version: 1.1-18 Tags: patch upstream User: debian-cr...@lists.debian.org Usertags: ftcbfs
file-kanji fails to cross build from source, because the upstream Makefile hard codes the build architecture compiler. Please make it substitutable to make file-kanji cross buildable. I'm attaching a patch for your convenience. Helmut
--- file-kanji-1.1.orig/Makefile +++ file-kanji-1.1/Makefile @@ -4,4 +4,4 @@ all : file2 file2 : file2.o - cc -o file2 file2.o + $(CC) -o file2 file2.o