Source: arj Version: 3.10.22-15 Tags: patch upstream User: [email protected] Usertags: rebootstrap
Hi Guillem, arj fails to cross build from source, because the compiler detected by ./configure is not forwarded to the Makefile. The attached patch adds the missing interpolation of CC and makes the cross build continue, but not succeed. It still fails running the today utility. Working on today shall be subject of another report. I ask you to just close this bug once CC is properly forwarded even if arj does not corss build then. Helmut
Index: arj-3.10.22/gnu/makefile.in =================================================================== --- arj-3.10.22.orig/gnu/makefile.in +++ arj-3.10.22/gnu/makefile.in @@ -16,6 +16,7 @@ # Programs +CC = @CC@ INSTALL = @INSTALL@ INSTALL_DIR = @INSTALL@ -d -m 755 INSTALL_DATA = @INSTALL_DATA@

