Source: qrouter Version: 1.3.80-1 Tags: patch upstream User: [email protected] Usertags: rebootstrap
qrouter fails to cross build from source. Its ./configure correctly detects the cross compiler, but make falls back to the default of the CC variable. The attached patch propagates the compiler and makes qrouter cross build successfully. Please consider applying it. Helmut
Index: qrouter-1.3.80/Makefile.in =================================================================== --- qrouter-1.3.80.orig/Makefile.in +++ qrouter-1.3.80/Makefile.in @@ -3,6 +3,7 @@ # # Main compiler arguments +CC = @CC@ CFLAGS += @CFLAGS@ CPPFLAGS = @CPPFLAGS@ DEFS = @DEFS@

