GNU Autoconf 2.65.
svn path=/nixpkgs/trunk/; revision=18511
This commit is contained in:
parent
96d3032ea0
commit
0d041d909b
|
@ -1,15 +1,13 @@
|
||||||
{ stdenv, fetchurl, m4, perl }:
|
{ stdenv, fetchurl, m4, perl }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "autoconf-2.64";
|
name = "autoconf-2.65";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://gnu/autoconf/${name}.tar.bz2";
|
url = "mirror://gnu/autoconf/${name}.tar.bz2";
|
||||||
sha256 = "11damk9x09616cjdfxx9y73igd96zzylgq0l4j57qzify6nlqbw7";
|
sha256 = "0sqkh2xirg3yq7774aqmbi2nbx8rv3yf6v2xzwlz5ypkax0984fv";
|
||||||
};
|
};
|
||||||
|
|
||||||
patches = [ ./test-suite-fix.patch ];
|
|
||||||
|
|
||||||
buildInputs = [ m4 perl ];
|
buildInputs = [ m4 perl ];
|
||||||
|
|
||||||
# Work around a known issue in Cygwin. See
|
# Work around a known issue in Cygwin. See
|
||||||
|
|
|
@ -1,17 +0,0 @@
|
||||||
This patch by Ralf Wildenhues <Ralf.Wildenhues@gmx.de> fixes
|
|
||||||
the "Hard fail" test case.
|
|
||||||
|
|
||||||
See http://thread.gmane.org/gmane.comp.sysutils.autoconf.bugs/6814
|
|
||||||
for details.
|
|
||||||
|
|
||||||
--- a/tests/autotest.at
|
|
||||||
+++ b/tests/autotest.at
|
|
||||||
@@ -271,7 +271,7 @@ AT_CHECK_AT_TEST([Hard fail],
|
|
||||||
AT_CHECK([exit 99])],
|
|
||||||
[], [1], [], [ignore], [],
|
|
||||||
[AT_CHECK([grep '2 failed unexpectedly' micro-suite.log], [], [ignore])
|
|
||||||
- AT_CHECK([grep ok micro-suite.log], [1])])
|
|
||||||
+ AT_CHECK([grep '^[[12]].*ok' micro-suite.log], [1])])
|
|
||||||
|
|
||||||
AT_CHECK_AT_TEST([AT@&t@_FAIL_IF],
|
|
||||||
[AT_FAIL_IF([:])
|
|
Loading…
Reference in New Issue