Source: mouseemu
Version: 0.15-10
Tags: patch upstream
User: helm...@debian.org
Usertags: rebootstrap

mouseemu fails to cross build from source, because the upstream Makefile
hard codes the build architecture compiler. After making it
substitutable, mouseemu cross builds successfully. Please consider
applying the attached patch.

Helmut
--- mouseemu-0.15.orig/Makefile
+++ mouseemu-0.15/Makefile
@@ -1,5 +1,5 @@
 all:
-	gcc $(CFLAGS) -Wall -g $(LDFLAGS) -o mouseemu mouseemu.c
+	$(CC) $(CFLAGS) -Wall -g $(LDFLAGS) -o mouseemu mouseemu.c
 clean:
 	rm -f *.o core* mouseemu
 install:

Reply via email to