- Reduce the excessive gcc-* packages dependencies outside of mock/koji.
This commit is contained in:
parent
92dc0e1867
commit
cd60710ea7
15
gdb.spec
15
gdb.spec
@ -11,7 +11,7 @@ Name: gdb
|
|||||||
Version: 6.7.1
|
Version: 6.7.1
|
||||||
|
|
||||||
# The release always contains a leading reserved number, start it at 1.
|
# The release always contains a leading reserved number, start it at 1.
|
||||||
Release: 4%{?dist}
|
Release: 5%{?dist}
|
||||||
|
|
||||||
License: GPL
|
License: GPL
|
||||||
Group: Development/Debuggers
|
Group: Development/Debuggers
|
||||||
@ -331,9 +331,9 @@ BuildRequires: flex bison sharutils expat-devel
|
|||||||
Requires: readline
|
Requires: readline
|
||||||
BuildRequires: readline-devel
|
BuildRequires: readline-devel
|
||||||
|
|
||||||
# BuildRequires only for the complete testsuite run.
|
# BuildRequires are provided here only for the complete testsuite run.
|
||||||
# Omit them on local user builds.
|
# Omit them on local user builds. %{_topdir} checks for mock (and so even Koji).
|
||||||
%if 0%{?dist:1}
|
%if "%{_topdir}" == "/builddir/build"
|
||||||
# gcc-objc++ is not covered by the GDB testsuite.
|
# gcc-objc++ is not covered by the GDB testsuite.
|
||||||
BuildRequires: gcc gcc-c++ gcc-gfortran gcc-java gcc-objc
|
BuildRequires: gcc gcc-c++ gcc-gfortran gcc-java gcc-objc
|
||||||
# Copied from gcc-4.1.2-32
|
# Copied from gcc-4.1.2-32
|
||||||
@ -497,8 +497,8 @@ mkdir %{gdb_build}
|
|||||||
cd %{gdb_build}
|
cd %{gdb_build}
|
||||||
|
|
||||||
# g77 executable is no longer present in Fedora gcc-4.x+.
|
# g77 executable is no longer present in Fedora gcc-4.x+.
|
||||||
g77="`which gfortran 2>/dev/null`"
|
g77="`which gfortran 2>/dev/null || true`"
|
||||||
test -n "$g77" && ln -s "$g77" ./g77
|
test -z "$g77" || ln -s "$g77" ./g77
|
||||||
|
|
||||||
# FIXME: The configure option --enable-gdb-build-warnings=,-Werror
|
# FIXME: The configure option --enable-gdb-build-warnings=,-Werror
|
||||||
# below can conflict with user settings. For instance, passing a
|
# below can conflict with user settings. For instance, passing a
|
||||||
@ -629,6 +629,9 @@ fi
|
|||||||
# don't include the files in include, they are part of binutils
|
# don't include the files in include, they are part of binutils
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Sat Nov 24 2007 Jan Kratochvil <jan.kratochvil@redhat.com> - 6.7.1-5
|
||||||
|
- Reduce the excessive gcc-* packages dependencies outside of mock/koji.
|
||||||
|
|
||||||
* Fri Nov 16 2007 Jan Kratochvil <jan.kratochvil@redhat.com> - 6.7.1-4
|
* Fri Nov 16 2007 Jan Kratochvil <jan.kratochvil@redhat.com> - 6.7.1-4
|
||||||
- Fix `errno' resolving across separate debuginfo files.
|
- Fix `errno' resolving across separate debuginfo files.
|
||||||
- Fix segfault on no file loaded, `set debug solib 1', `info sharedlibrary'.
|
- Fix segfault on no file loaded, `set debug solib 1', `info sharedlibrary'.
|
||||||
|
Loading…
Reference in New Issue
Block a user