Re: [cxx-gtk-utils-general] Build failure on armv5tl
Brought to you by:
cvine
From: Chris V. <ch...@cv...> - 2016-05-12 15:04:00
|
On Thu, 12 May 2016 15:50:07 +0100 Barry Jackson <zen...@ze...> wrote: [snip] > Many thanks for your rapid response :) > Yes we want a distributable package, so skipping the tests would be > fine, however we currently don't call 'make check' in the spec, so > I'm guessing the tests can be disabled in the configuration somewhere? > Our current spec is here: > http://svnweb.mageia.org/packages/cauldron/c%2B%2B-gtk-utils/current/SPECS/c%2B%2B-gtk-utils.spec?view=markup Ah yes. The tests will not be run by a 'make', but they will be compiled, which is not what you want. There is no configuration option for this. I am afraid you will need to patch the root Makefile.am file by hand by omitting '@COND_TESTS@' from the SUBDIRS line, and then run autoreconf. (If you compile with the --without-gtk option, the test suite will also not be built, but that defeats half the purpose of the library. You could add a rule to configure.ac which sets COND_TEST to "" and then AC_SUBST's it near the end (right before AC_CONFIG_FILES), and then run autreconf, but patching Makefile.am seems easier.) Chris |