Source: wah-plugins Version: 0.1.0-4 Tags: patch upstream User: [email protected] Usertags: rebootstrap
wah-plugins fails to cross build from source, because the upstream Makefile hard codes the build architecture compiler for linking. After making it substitutable, it cross builds successfully. Please consider applying the attached patch. Helmut
Index: wah-plugins-0.1.0/Makefile =================================================================== --- wah-plugins-0.1.0.orig/Makefile +++ wah-plugins-0.1.0/Makefile @@ -33,7 +33,7 @@ WAHPLUGINS_H = ladspaplugin.h autowah.h autowah.so: $(WAHPLUGINS_O) - g++ -shared $(LDFLAGS) -o autowah.so $(WAHPLUGINS_O) + $(CXX) -shared $(LDFLAGS) -o autowah.so $(WAHPLUGINS_O) $(WAHPLUGINS_O): $(WAHPLUGINS_H)

