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:
commit
056fd117c1
@ -1,8 +1,7 @@
|
|||||||
make searches for -lmoo targets in /lib and /usr/lib after mangling
|
make searches for -lfoo targets in /lib and /usr/lib after mangling
|
||||||
them with .LIBPATTERNS into libmoo.so
|
them with .LIBPATTERNS into libfoo.so
|
||||||
|
|
||||||
This patch extends to teh search path to /lib64/ and /usr/lib64
|
|
||||||
|
|
||||||
|
This patch extends the search path to /lib64 and /usr/lib64
|
||||||
---
|
---
|
||||||
remake.c | 2 ++
|
remake.c | 2 ++
|
||||||
1 file changed, 2 insertions(+)
|
1 file changed, 2 insertions(+)
|
||||||
|
@ -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
|
Sun Jun 12 09:13:27 UTC 2016 - mpluskal@suse.com
|
||||||
|
|
||||||
|
12
make.spec
12
make.spec
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package make
|
# 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
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# 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
|
if [ %{_lib} == lib64 ]; then
|
||||||
%patch64 -p1
|
%patch64 -p1
|
||||||
fi
|
fi
|
||||||
# This test always fails
|
|
||||||
rm -f tests/scripts/features/output-sync
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
export CFLAGS="%{optflags}"
|
export CFLAGS="%{optflags}"
|
||||||
@ -55,7 +53,13 @@ export CFLAGS="%{optflags}"
|
|||||||
make %{?_smp_mflags}
|
make %{?_smp_mflags}
|
||||||
|
|
||||||
%check
|
%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
|
%install
|
||||||
make %{?_smp_mflags} DESTDIR=%{buildroot} install
|
make %{?_smp_mflags} DESTDIR=%{buildroot} install
|
||||||
|
Loading…
x
Reference in New Issue
Block a user