Source: comgt
Version: 0.32-3
Tags: patch upstream
User: debian-cr...@lists.debian.org
Usertags: ftcbfs

comgt fails to cross build from source, because the upstream Makefile
hard codes the build architecture compiler cc. Please consider applying
the attached patch to make it substitutable.

Helmut
--- comgt-0.32.orig/Makefile
+++ comgt-0.32/Makefile
@@ -71,8 +71,8 @@
 
 
 comgt: comgt.o
-	cc comgt.o $(LDFLAGS) -o comgt
+	$(CC) comgt.o $(LDFLAGS) -o comgt
 
 comgt.o: comgt.c comgt.h
-	cc comgt.c $(CFLAGS) 
+	$(CC) comgt.c $(CFLAGS) 
 

Reply via email to