lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

automake 1.11: fix test case with Autoconf 2.69

+18
+5
pkgs/development/tools/misc/automake/automake-1.11.x.nix
··· 15 15 sha256 = "06476qbd16dlasz29drmljqmr4gwx4qgcl075033b2hc73wx2ijg"; 16 16 }; 17 17 18 + patches = [ ./fix-test-autoconf-2.69.patch ]; 19 + 18 20 buildInputs = [perl autoconf makeWrapper]; 19 21 20 22 inherit doCheck; ··· 26 28 # Don't fixup "#! /bin/sh" in Libtool, otherwise it will use the 27 29 # "fixed" path in generated files! 28 30 dontPatchShebangs = true; 31 + 32 + # Run the test suite in parallel. 33 + enableParallelBuilding = true; 29 34 30 35 meta = { 31 36 homepage = http://www.gnu.org/software/automake/;
+13
pkgs/development/tools/misc/automake/fix-test-autoconf-2.69.patch
··· 1 + With Autoconf 2.69 (instead of 2.68), config.{guess,sub} are needed. 2 + 3 + --- automake-1.11.2/tests/compile_f90_c_cxx.test 2011-12-20 21:56:29.000000000 +0100 4 + +++ automake-1.11.2/tests/compile_f90_c_cxx.test 2012-07-07 13:35:58.000000000 +0200 5 + @@ -41,7 +41,7 @@ END 6 + : > baz.cc 7 + 8 + $ACLOCAL 9 + -$AUTOMAKE 10 + +$AUTOMAKE --add-missing 11 + 12 + # Look for the macros at the beginning of rules. Be careful, as there 13 + # are literal tabs at the beginning of the search strings.