Source: xevil Version: 2.02r2-10.3 Tags: patch upstream User: debian-cr...@lists.debian.org Usertags: ftcbfs
xevil fails to cross build from source, because an upstream Makefile forces the build architecture compiler g++. The attached patch makes the compiler subtitutable and xevil cross buildable. Please consider applying it. Helmut
--- xevil-2.02r2.orig/config.mk +++ xevil-2.02r2/config.mk @@ -257,7 +257,7 @@ #For debian-linux debian-linux: - @$(MAKE) CC="g++" \ + @$(MAKE) CC="$(CXX)" \ CFLAGS="-DUSE_RANDOM -DXEVIL_KEYSET=UIlinux -DUSE_UINT_NET_LENGTH" \ INCL_DIRS="-I/usr/X11R6/include" \ LIBS_DIRS="-L/usr/X11R6/lib" \