Source: braa
Version: 0.82-3
Tags: patch upstream
User: helm...@debian.org
Usertags: rebootstrap

braa fails to cross build from source, because the upstream Makefile
hard codes the build architecture compiler "cc" in one place. Making
that substitutable makes braa cross buildable. Please consider applying
the attached patch.

Helmut
--- braa-0.82.orig/Makefile
+++ braa-0.82/Makefile
@@ -24,7 +24,7 @@
 LIBS = 
 
 all: ${OBJECTS}
-	cc $(OBJECTS) -o $(OUT) $(LDFLAGS) $(LIBS)
+	$(CC) $(OBJECTS) -o $(OUT) $(LDFLAGS) $(LIBS)
 #	strip $(OUT)
 
 clean:

Reply via email to