forked from pool/automake
Valentin Lefebvre
6b9cb9cb09
- AM_PATH_PYTHON will, after checking "python", prefer any Python 3 version (latest versions checked first) over any Python 2 version. If a specific version of Python 2 is still needed, the $PYTHON variable should be set beforehand. - AM_PATH_PYTHON will also search for Python versions 3.20 through 3.10. It previously searched for 3.9 through 3.0. - RANLIB may be overridden on a per-target basis. - AM_TEXI2FLAGS may be defined to pass extra flags to TEXI2DVI & TEXI2PDF. - New option "posix" to emit the special target .POSIX for make. - Systems with non-POSIX "rm -f" behavior are now supported, and the prior intent to drop support for them has been reversed. The ACCEPT_INFERIOR_RM_PROGRAM setting no longer exists. - Variables using escaped \# will trigger portability warnings, but be retained when appended. GNU Make & BSD Makes are known to support it. - GNU Make's default pattern rules are disabled, for speed and debugging. (.SUFFIXES was already cleared.) - For Texinfo documents, if a .texi.in file exists, but no .texi, the .texi.in will be read. Texinfo source files need not be present at all, and if present, need not contain @setfilename. Then the file name as given in the Makefile.am will be used. If @setfilename is present, it should be the basename of the Texinfo file, extended with .info. - aclocal has a new option --aclocal-path to override $ACLOCAL_PATH. - The missing script also supports autoreconf, autogen, and perl. - test-suite.log now contains basic system information, and the console message about bug reporting on failure has a bit more detail. - When using the (default) "parallel" test driver, you can now omit the output of skipped tests from test-suite.log by defining the variable IGNORE_SKIPPED_LOGS to a non-empty value. (bug#71422) - Drop patches now included in 1.17 * tests-Fix-type-defaults-error-in-link_cond.patch * tests-avoid-implicit-function-declaration-in-depcomp.patch * tests-don-t-try-to-prevent-flex-from-including-unist.patch * tests-avoid-implicit-function-declarations.patch - Drop patch automake-require_file.patch with different upstream fix - Drop no longer necessary patch automake-1.13.4-fix-primary-prefix-invalid-couples-test.patch - Ajust patches automake-suse-vendor.patch and 0001-correct-parameter-parsing-in-test-driver-script.patch OBS-URL: https://build.opensuse.org/package/show/devel:tools:building/automake?expand=0&rev=97
27 lines
1.0 KiB
Diff
27 lines
1.0 KiB
Diff
From: Andreas Stieger <andreas.stieger@gmx.de>
|
|
Subject: fix test failures in openSUSE Factory
|
|
Date: Fri, 16 Aug 2013 22:59:41 +0100
|
|
Upstream: no
|
|
|
|
The test suite fails for factory comparing the output of two command runs.
|
|
As only the content is relevant, not the order, sort befor diffing to fix.
|
|
|
|
---
|
|
t/primary-prefix-invalid-couples.tap | 2 ++
|
|
1 file changed, 2 insertions(+)
|
|
|
|
Index: automake-1.15.1/t/primary-prefix-invalid-couples.tap
|
|
===================================================================
|
|
--- automake-1.15.1.orig/t/primary-prefix-invalid-couples.tap
|
|
+++ automake-1.15.1/t/primary-prefix-invalid-couples.tap
|
|
@@ -186,7 +186,9 @@ grep -v 'dir.* not a legitimate director
|
|
# Check that the same failures are present without the '--add-missing'
|
|
# option.
|
|
mv stderr stderr.old
|
|
+sort stderr.old -o stderr.old
|
|
AUTOMAKE_fails -d "automake error out on mismatched prefix/primary couples"
|
|
+sort stderr -o stderr
|
|
command_ok_ "... and with the same diagnostic of 'automake -a'" \
|
|
diff stderr.old stderr
|
|
|