Accepting request 523602 from Base:System

- Print out testsuite results after failure (forwarded request 523601 from Andreas_Schwab)

OBS-URL: https://build.opensuse.org/request/show/523602
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/make?expand=0&rev=38
This commit is contained in:
Dominique Leuenberger 2017-09-20 15:05:04 +00:00 committed by Git OBS Bridge
commit 056fd117c1
3 changed files with 16 additions and 8 deletions

View File

@ -1,8 +1,7 @@
make searches for -lmoo targets in /lib and /usr/lib after mangling
them with .LIBPATTERNS into libmoo.so
This patch extends to teh search path to /lib64/ and /usr/lib64
make searches for -lfoo targets in /lib and /usr/lib after mangling
them with .LIBPATTERNS into libfoo.so
This patch extends the search path to /lib64 and /usr/lib64
---
remake.c | 2 ++
1 file changed, 2 insertions(+)

View File

@ -1,3 +1,8 @@
-------------------------------------------------------------------
Tue Sep 12 08:10:12 UTC 2017 - schwab@suse.de
- Print out testsuite results after failure
-------------------------------------------------------------------
Sun Jun 12 09:13:27 UTC 2016 - mpluskal@suse.com

View File

@ -1,7 +1,7 @@
#
# spec file for package make
#
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@ -46,8 +46,6 @@ The GNU make command with extensive documentation.
if [ %{_lib} == lib64 ]; then
%patch64 -p1
fi
# This test always fails
rm -f tests/scripts/features/output-sync
%build
export CFLAGS="%{optflags}"
@ -55,7 +53,13 @@ export CFLAGS="%{optflags}"
make %{?_smp_mflags}
%check
make %{?_smp_mflags} check
make %{?_smp_mflags} check || {
for f in tests/work/*/*.diff; do
test -f "$f" || continue
printf "++++++++++++++ %s ++++++++++++++\n" "${f##*/}"
cat "$f"
done
}
%install
make %{?_smp_mflags} DESTDIR=%{buildroot} install