Source: japa Version: 0.8.4-2 Tags: patch upstream User: [email protected] Usertags: rebootstrap
japa fails to cross build from source, because source/Makefile hard codes the build architecture compiler g++. After making it substitutable, japa cross builds successfully. Please consider applying the attached patch. Helmut
--- japa-0.8.4.orig/source/Makefile +++ japa-0.8.4/source/Makefile @@ -32,7 +32,7 @@ JAPA_O = analyser.o audio.o gobjects.o japa.o mainwin.o styles.o rngen.o japa: $(JAPA_O) - g++ $(LDFLAGS) -o $@ $(JAPA_O) $(LDLIBS) + $(CXX) $(LDFLAGS) -o $@ $(JAPA_O) $(LDLIBS) $(JAPA_O): -include $(JAPA_O:%.o=%.d)
_______________________________________________ pkg-multimedia-maintainers mailing list [email protected] https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers
