Some tests in tests/Makefile.am build despite of not calling 'make check' lenghtening the default compile time for exo. This: noinst_PROGRAMS = \ test-exo-icon-chooser-dialog \ test-exo-wrap-table Should propably be: check_PROGRAMS = \ test-exo-icon-chooser-dialog \ test-exo-wrap-table Simple change from noinst to check. Not really a major issue but consider that this gets built on every user everytime they install the package on source based distro... Thanks! - Samuli
It also tries to run the test binaries which fails when cross compiling. In order to get it cross compiling for ARM without errors I had to hack out tests from Makefile.am and run autoreconf. In general it's bad practice to run created binaries in configure, make or make install without providing an override mechanism.
Fixed in ac27ea6.