Source: dxtool
Version: 0.1-3
Tags: patch upstream
User: [email protected]
Usertags: ftcbfs

dxtool fails to cross build from source, because the upstream Makefile
hard codes the build architecture compiler. Please consider applying the
attached patch.

Helmut
--- dxtool-0.1.orig/Makefile
+++ dxtool-0.1/Makefile
@@ -9,7 +9,7 @@
 LIBS = 
 
 all: ${OBJECTS}
-	cc $(OBJECTS) -o $(OUT) $(LDFLAGS) $(LIBS)
+	$(CC) $(OBJECTS) -o $(OUT) $(LDFLAGS) $(LIBS)
 
 clean:
 	rm -rf $(OBJECTS) $(OUT)

Reply via email to