forked from pool/binutils
This commit is contained in:
parent
54eedb5c14
commit
7faed8a0cc
@ -1,97 +0,0 @@
|
|||||||
2008-06-09 Andreas Schwab <schwab@suse.de>
|
|
||||||
|
|
||||||
* opncls.c (find_separate_debug_file): Use the canonical absolute
|
|
||||||
directory of the bfd filename for finding the debug file in the
|
|
||||||
global debugfile directory.
|
|
||||||
|
|
||||||
--- bfd/opncls.c.~1.52.~ 2008-03-28 10:38:17.000000000 +0100
|
|
||||||
+++ bfd/opncls.c 2008-06-09 17:06:46.000000000 +0200
|
|
||||||
@@ -1,6 +1,6 @@
|
|
||||||
/* opncls.c -- open and close a BFD.
|
|
||||||
Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 2000,
|
|
||||||
- 2001, 2002, 2003, 2004, 2005, 2006, 2007
|
|
||||||
+ 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008
|
|
||||||
Free Software Foundation, Inc.
|
|
||||||
|
|
||||||
Written by Cygnus Support.
|
|
||||||
@@ -1224,9 +1224,10 @@ find_separate_debug_file (bfd *abfd, con
|
|
||||||
char *basename;
|
|
||||||
char *dir;
|
|
||||||
char *debugfile;
|
|
||||||
+ char *canon_dir;
|
|
||||||
unsigned long crc32;
|
|
||||||
- int i;
|
|
||||||
size_t dirlen;
|
|
||||||
+ size_t canon_dirlen;
|
|
||||||
|
|
||||||
BFD_ASSERT (abfd);
|
|
||||||
if (debug_file_directory == NULL)
|
|
||||||
@@ -1263,8 +1264,12 @@ find_separate_debug_file (bfd *abfd, con
|
|
||||||
memcpy (dir, abfd->filename, dirlen);
|
|
||||||
dir[dirlen] = '\0';
|
|
||||||
|
|
||||||
+ canon_dir = lrealpath (dir[0] != '\0' ? dir : ".");
|
|
||||||
+ canon_dirlen = strlen (canon_dir);
|
|
||||||
+
|
|
||||||
debugfile = bfd_malloc (strlen (debug_file_directory) + 1
|
|
||||||
- + dirlen
|
|
||||||
+ + (canon_dirlen + 1 > dirlen
|
|
||||||
+ ? canon_dirlen + 1 : dirlen)
|
|
||||||
+ strlen (".debug/")
|
|
||||||
+ strlen (basename)
|
|
||||||
+ 1);
|
|
||||||
@@ -1272,6 +1277,7 @@ find_separate_debug_file (bfd *abfd, con
|
|
||||||
{
|
|
||||||
free (basename);
|
|
||||||
free (dir);
|
|
||||||
+ free (canon_dir);
|
|
||||||
return NULL;
|
|
||||||
}
|
|
||||||
|
|
||||||
@@ -1283,6 +1289,7 @@ find_separate_debug_file (bfd *abfd, con
|
|
||||||
{
|
|
||||||
free (basename);
|
|
||||||
free (dir);
|
|
||||||
+ free (canon_dir);
|
|
||||||
return debugfile;
|
|
||||||
}
|
|
||||||
|
|
||||||
@@ -1295,29 +1302,33 @@ find_separate_debug_file (bfd *abfd, con
|
|
||||||
{
|
|
||||||
free (basename);
|
|
||||||
free (dir);
|
|
||||||
+ free (canon_dir);
|
|
||||||
return debugfile;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Then try in the global debugfile directory. */
|
|
||||||
strcpy (debugfile, debug_file_directory);
|
|
||||||
- i = strlen (debug_file_directory) - 1;
|
|
||||||
- if (i > 0
|
|
||||||
- && debug_file_directory[i] != '/'
|
|
||||||
- && dir[0] != '/')
|
|
||||||
+ dirlen = strlen (debug_file_directory) - 1;
|
|
||||||
+ if (dirlen > 0
|
|
||||||
+ && debug_file_directory[dirlen] != '/'
|
|
||||||
+ && canon_dir[0] != '/')
|
|
||||||
strcat (debugfile, "/");
|
|
||||||
- strcat (debugfile, dir);
|
|
||||||
+ strcat (debugfile, canon_dir);
|
|
||||||
+ strcat (debugfile, "/");
|
|
||||||
strcat (debugfile, basename);
|
|
||||||
|
|
||||||
if (separate_debug_file_exists (debugfile, crc32))
|
|
||||||
{
|
|
||||||
free (basename);
|
|
||||||
free (dir);
|
|
||||||
+ free (canon_dir);
|
|
||||||
return debugfile;
|
|
||||||
}
|
|
||||||
|
|
||||||
free (debugfile);
|
|
||||||
free (basename);
|
|
||||||
free (dir);
|
|
||||||
+ free (canon_dir);
|
|
||||||
return NULL;
|
|
||||||
}
|
|
||||||
|
|
@ -1,3 +1,3 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
version https://git-lfs.github.com/spec/v1
|
||||||
oid sha256:2684f216d0244745ca24d6f1df43218853a5a70dddc3c8dc7d7db01e040e3631
|
oid sha256:0042efb827e98b0b3cff3573d70fb5530758e3dc76bd987a6efddcf71c84869c
|
||||||
size 15457278
|
size 15478950
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Sep 4 11:00:48 CEST 2008 - schwab@suse.de
|
||||||
|
|
||||||
|
- Update to head of trunk.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Aug 8 11:09:38 CEST 2008 - schwab@suse.de
|
Fri Aug 8 11:09:38 CEST 2008 - schwab@suse.de
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# spec file for package binutils (Version 2.18.50.20080808)
|
# spec file for package binutils (Version 2.18.50.20080904)
|
||||||
#
|
#
|
||||||
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
@ -52,7 +52,7 @@ License: GNU Free Documentation License, Version 1.1 (GFDL 1.1); GNU Free
|
|||||||
Group: Development/Tools/Building
|
Group: Development/Tools/Building
|
||||||
PreReq: %{install_info_prereq}
|
PreReq: %{install_info_prereq}
|
||||||
AutoReqProv: on
|
AutoReqProv: on
|
||||||
Version: 2.18.50.20080808
|
Version: 2.18.50.20080904
|
||||||
Release: 1
|
Release: 1
|
||||||
%define binutils_version %(echo %version | sed 's/\\.[0-9]\\{8\\}$//')
|
%define binutils_version %(echo %version | sed 's/\\.[0-9]\\{8\\}$//')
|
||||||
Summary: GNU Binutils
|
Summary: GNU Binutils
|
||||||
@ -70,7 +70,6 @@ Patch9: testsuite.diff
|
|||||||
Patch10: enable-targets.diff
|
Patch10: enable-targets.diff
|
||||||
Patch11: use-hashtype-both-by-default.diff
|
Patch11: use-hashtype-both-by-default.diff
|
||||||
Patch12: s390-pic-dso.diff
|
Patch12: s390-pic-dso.diff
|
||||||
Patch13: bfd-follow-gnu-debuglink.diff
|
|
||||||
Patch90: cross-avr-nesc-as.patch
|
Patch90: cross-avr-nesc-as.patch
|
||||||
Patch92: cross-avr-omit_section_dynsym.patch
|
Patch92: cross-avr-omit_section_dynsym.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
@ -237,7 +236,6 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
|||||||
%patch10
|
%patch10
|
||||||
%patch11
|
%patch11
|
||||||
%patch12
|
%patch12
|
||||||
%patch13
|
|
||||||
%if "%{TARGET}" == "avr"
|
%if "%{TARGET}" == "avr"
|
||||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||||
%patch90
|
%patch90
|
||||||
@ -447,6 +445,8 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%{_libdir}/lib*.a
|
%{_libdir}/lib*.a
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Thu Sep 04 2008 schwab@suse.de
|
||||||
|
- Update to head of trunk.
|
||||||
* Fri Aug 08 2008 schwab@suse.de
|
* Fri Aug 08 2008 schwab@suse.de
|
||||||
- Update to head of trunk.
|
- Update to head of trunk.
|
||||||
* Fri Jul 18 2008 schwab@suse.de
|
* Fri Jul 18 2008 schwab@suse.de
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Sep 4 11:00:48 CEST 2008 - schwab@suse.de
|
||||||
|
|
||||||
|
- Update to head of trunk.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Aug 8 11:09:38 CEST 2008 - schwab@suse.de
|
Fri Aug 8 11:09:38 CEST 2008 - schwab@suse.de
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# spec file for package cross-alpha-binutils (Version 2.18.50.20080808)
|
# spec file for package cross-alpha-binutils (Version 2.18.50.20080904)
|
||||||
#
|
#
|
||||||
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
@ -52,7 +52,7 @@ License: GPL v2 or later; LGPL v2.1 or later; X11/MIT
|
|||||||
Group: Development/Tools/Building
|
Group: Development/Tools/Building
|
||||||
PreReq: %{install_info_prereq}
|
PreReq: %{install_info_prereq}
|
||||||
AutoReqProv: on
|
AutoReqProv: on
|
||||||
Version: 2.18.50.20080808
|
Version: 2.18.50.20080904
|
||||||
Release: 1
|
Release: 1
|
||||||
%define binutils_version %(echo %version | sed 's/\\.[0-9]\\{8\\}$//')
|
%define binutils_version %(echo %version | sed 's/\\.[0-9]\\{8\\}$//')
|
||||||
Summary: GNU binutils for Cross-Development to ALPHA Processors
|
Summary: GNU binutils for Cross-Development to ALPHA Processors
|
||||||
@ -70,7 +70,6 @@ Patch9: testsuite.diff
|
|||||||
Patch10: enable-targets.diff
|
Patch10: enable-targets.diff
|
||||||
Patch11: use-hashtype-both-by-default.diff
|
Patch11: use-hashtype-both-by-default.diff
|
||||||
Patch12: s390-pic-dso.diff
|
Patch12: s390-pic-dso.diff
|
||||||
Patch13: bfd-follow-gnu-debuglink.diff
|
|
||||||
Patch90: cross-avr-nesc-as.patch
|
Patch90: cross-avr-nesc-as.patch
|
||||||
Patch92: cross-avr-omit_section_dynsym.patch
|
Patch92: cross-avr-omit_section_dynsym.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
@ -170,7 +169,6 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
|||||||
%patch10
|
%patch10
|
||||||
%patch11
|
%patch11
|
||||||
%patch12
|
%patch12
|
||||||
%patch13
|
|
||||||
%if "%{TARGET}" == "avr"
|
%if "%{TARGET}" == "avr"
|
||||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||||
%patch90
|
%patch90
|
||||||
@ -375,6 +373,8 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Thu Sep 04 2008 schwab@suse.de
|
||||||
|
- Update to head of trunk.
|
||||||
* Fri Aug 08 2008 schwab@suse.de
|
* Fri Aug 08 2008 schwab@suse.de
|
||||||
- Update to head of trunk.
|
- Update to head of trunk.
|
||||||
* Fri Jul 18 2008 schwab@suse.de
|
* Fri Jul 18 2008 schwab@suse.de
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Sep 4 11:00:48 CEST 2008 - schwab@suse.de
|
||||||
|
|
||||||
|
- Update to head of trunk.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Aug 8 11:09:38 CEST 2008 - schwab@suse.de
|
Fri Aug 8 11:09:38 CEST 2008 - schwab@suse.de
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# spec file for package cross-arm-binutils (Version 2.18.50.20080808)
|
# spec file for package cross-arm-binutils (Version 2.18.50.20080904)
|
||||||
#
|
#
|
||||||
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
@ -52,7 +52,7 @@ License: GPL v2 or later; LGPL v2.1 or later; X11/MIT
|
|||||||
Group: Development/Tools/Building
|
Group: Development/Tools/Building
|
||||||
PreReq: %{install_info_prereq}
|
PreReq: %{install_info_prereq}
|
||||||
AutoReqProv: on
|
AutoReqProv: on
|
||||||
Version: 2.18.50.20080808
|
Version: 2.18.50.20080904
|
||||||
Release: 1
|
Release: 1
|
||||||
%define binutils_version %(echo %version | sed 's/\\.[0-9]\\{8\\}$//')
|
%define binutils_version %(echo %version | sed 's/\\.[0-9]\\{8\\}$//')
|
||||||
Summary: GNU binutils for Cross-Development to ARM Processors
|
Summary: GNU binutils for Cross-Development to ARM Processors
|
||||||
@ -70,7 +70,6 @@ Patch9: testsuite.diff
|
|||||||
Patch10: enable-targets.diff
|
Patch10: enable-targets.diff
|
||||||
Patch11: use-hashtype-both-by-default.diff
|
Patch11: use-hashtype-both-by-default.diff
|
||||||
Patch12: s390-pic-dso.diff
|
Patch12: s390-pic-dso.diff
|
||||||
Patch13: bfd-follow-gnu-debuglink.diff
|
|
||||||
Patch90: cross-avr-nesc-as.patch
|
Patch90: cross-avr-nesc-as.patch
|
||||||
Patch92: cross-avr-omit_section_dynsym.patch
|
Patch92: cross-avr-omit_section_dynsym.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
@ -170,7 +169,6 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
|||||||
%patch10
|
%patch10
|
||||||
%patch11
|
%patch11
|
||||||
%patch12
|
%patch12
|
||||||
%patch13
|
|
||||||
%if "%{TARGET}" == "avr"
|
%if "%{TARGET}" == "avr"
|
||||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||||
%patch90
|
%patch90
|
||||||
@ -375,6 +373,8 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Thu Sep 04 2008 schwab@suse.de
|
||||||
|
- Update to head of trunk.
|
||||||
* Fri Aug 08 2008 schwab@suse.de
|
* Fri Aug 08 2008 schwab@suse.de
|
||||||
- Update to head of trunk.
|
- Update to head of trunk.
|
||||||
* Fri Jul 18 2008 schwab@suse.de
|
* Fri Jul 18 2008 schwab@suse.de
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Sep 4 11:00:48 CEST 2008 - schwab@suse.de
|
||||||
|
|
||||||
|
- Update to head of trunk.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Aug 8 11:09:38 CEST 2008 - schwab@suse.de
|
Fri Aug 8 11:09:38 CEST 2008 - schwab@suse.de
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# spec file for package cross-avr-binutils (Version 2.18.50.20080808)
|
# spec file for package cross-avr-binutils (Version 2.18.50.20080904)
|
||||||
#
|
#
|
||||||
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
@ -52,7 +52,7 @@ License: GPL v2 or later; LGPL v2.1 or later
|
|||||||
Group: Development/Tools/Building
|
Group: Development/Tools/Building
|
||||||
PreReq: %{install_info_prereq}
|
PreReq: %{install_info_prereq}
|
||||||
AutoReqProv: on
|
AutoReqProv: on
|
||||||
Version: 2.18.50.20080808
|
Version: 2.18.50.20080904
|
||||||
Release: 1
|
Release: 1
|
||||||
%define binutils_version %(echo %version | sed 's/\\.[0-9]\\{8\\}$//')
|
%define binutils_version %(echo %version | sed 's/\\.[0-9]\\{8\\}$//')
|
||||||
Summary: GNU Binutils for Cross-Development to AVR Processors
|
Summary: GNU Binutils for Cross-Development to AVR Processors
|
||||||
@ -70,7 +70,6 @@ Patch9: testsuite.diff
|
|||||||
Patch10: enable-targets.diff
|
Patch10: enable-targets.diff
|
||||||
Patch11: use-hashtype-both-by-default.diff
|
Patch11: use-hashtype-both-by-default.diff
|
||||||
Patch12: s390-pic-dso.diff
|
Patch12: s390-pic-dso.diff
|
||||||
Patch13: bfd-follow-gnu-debuglink.diff
|
|
||||||
Patch90: cross-avr-nesc-as.patch
|
Patch90: cross-avr-nesc-as.patch
|
||||||
Patch92: cross-avr-omit_section_dynsym.patch
|
Patch92: cross-avr-omit_section_dynsym.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
@ -170,7 +169,6 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
|||||||
%patch10
|
%patch10
|
||||||
%patch11
|
%patch11
|
||||||
%patch12
|
%patch12
|
||||||
%patch13
|
|
||||||
%if "%{TARGET}" == "avr"
|
%if "%{TARGET}" == "avr"
|
||||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||||
%patch90
|
%patch90
|
||||||
@ -375,6 +373,8 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Thu Sep 04 2008 schwab@suse.de
|
||||||
|
- Update to head of trunk.
|
||||||
* Fri Aug 08 2008 schwab@suse.de
|
* Fri Aug 08 2008 schwab@suse.de
|
||||||
- Update to head of trunk.
|
- Update to head of trunk.
|
||||||
* Fri Jul 18 2008 schwab@suse.de
|
* Fri Jul 18 2008 schwab@suse.de
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Sep 4 11:00:48 CEST 2008 - schwab@suse.de
|
||||||
|
|
||||||
|
- Update to head of trunk.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Aug 8 11:09:38 CEST 2008 - schwab@suse.de
|
Fri Aug 8 11:09:38 CEST 2008 - schwab@suse.de
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# spec file for package cross-hppa-binutils (Version 2.18.50.20080808)
|
# spec file for package cross-hppa-binutils (Version 2.18.50.20080904)
|
||||||
#
|
#
|
||||||
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
@ -52,7 +52,7 @@ License: GPL v2 or later; LGPL v2.1 or later; X11/MIT
|
|||||||
Group: Development/Tools/Building
|
Group: Development/Tools/Building
|
||||||
PreReq: %{install_info_prereq}
|
PreReq: %{install_info_prereq}
|
||||||
AutoReqProv: on
|
AutoReqProv: on
|
||||||
Version: 2.18.50.20080808
|
Version: 2.18.50.20080904
|
||||||
Release: 1
|
Release: 1
|
||||||
%define binutils_version %(echo %version | sed 's/\\.[0-9]\\{8\\}$//')
|
%define binutils_version %(echo %version | sed 's/\\.[0-9]\\{8\\}$//')
|
||||||
Summary: GNU binutils for Cross-Development to HPPA Processors
|
Summary: GNU binutils for Cross-Development to HPPA Processors
|
||||||
@ -70,7 +70,6 @@ Patch9: testsuite.diff
|
|||||||
Patch10: enable-targets.diff
|
Patch10: enable-targets.diff
|
||||||
Patch11: use-hashtype-both-by-default.diff
|
Patch11: use-hashtype-both-by-default.diff
|
||||||
Patch12: s390-pic-dso.diff
|
Patch12: s390-pic-dso.diff
|
||||||
Patch13: bfd-follow-gnu-debuglink.diff
|
|
||||||
Patch90: cross-avr-nesc-as.patch
|
Patch90: cross-avr-nesc-as.patch
|
||||||
Patch92: cross-avr-omit_section_dynsym.patch
|
Patch92: cross-avr-omit_section_dynsym.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
@ -170,7 +169,6 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
|||||||
%patch10
|
%patch10
|
||||||
%patch11
|
%patch11
|
||||||
%patch12
|
%patch12
|
||||||
%patch13
|
|
||||||
%if "%{TARGET}" == "avr"
|
%if "%{TARGET}" == "avr"
|
||||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||||
%patch90
|
%patch90
|
||||||
@ -375,6 +373,8 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Thu Sep 04 2008 schwab@suse.de
|
||||||
|
- Update to head of trunk.
|
||||||
* Fri Aug 08 2008 schwab@suse.de
|
* Fri Aug 08 2008 schwab@suse.de
|
||||||
- Update to head of trunk.
|
- Update to head of trunk.
|
||||||
* Fri Jul 18 2008 schwab@suse.de
|
* Fri Jul 18 2008 schwab@suse.de
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Sep 4 11:00:48 CEST 2008 - schwab@suse.de
|
||||||
|
|
||||||
|
- Update to head of trunk.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Aug 8 11:09:38 CEST 2008 - schwab@suse.de
|
Fri Aug 8 11:09:38 CEST 2008 - schwab@suse.de
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# spec file for package cross-hppa64-binutils (Version 2.18.50.20080808)
|
# spec file for package cross-hppa64-binutils (Version 2.18.50.20080904)
|
||||||
#
|
#
|
||||||
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
@ -52,7 +52,7 @@ License: GPL v2 or later; LGPL v2.1 or later; X11/MIT
|
|||||||
Group: Development/Tools/Building
|
Group: Development/Tools/Building
|
||||||
PreReq: %{install_info_prereq}
|
PreReq: %{install_info_prereq}
|
||||||
AutoReqProv: on
|
AutoReqProv: on
|
||||||
Version: 2.18.50.20080808
|
Version: 2.18.50.20080904
|
||||||
Release: 1
|
Release: 1
|
||||||
%define binutils_version %(echo %version | sed 's/\\.[0-9]\\{8\\}$//')
|
%define binutils_version %(echo %version | sed 's/\\.[0-9]\\{8\\}$//')
|
||||||
Summary: GNU binutils for Cross-Development to HPPA64 Processors
|
Summary: GNU binutils for Cross-Development to HPPA64 Processors
|
||||||
@ -70,7 +70,6 @@ Patch9: testsuite.diff
|
|||||||
Patch10: enable-targets.diff
|
Patch10: enable-targets.diff
|
||||||
Patch11: use-hashtype-both-by-default.diff
|
Patch11: use-hashtype-both-by-default.diff
|
||||||
Patch12: s390-pic-dso.diff
|
Patch12: s390-pic-dso.diff
|
||||||
Patch13: bfd-follow-gnu-debuglink.diff
|
|
||||||
Patch90: cross-avr-nesc-as.patch
|
Patch90: cross-avr-nesc-as.patch
|
||||||
Patch92: cross-avr-omit_section_dynsym.patch
|
Patch92: cross-avr-omit_section_dynsym.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
@ -170,7 +169,6 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
|||||||
%patch10
|
%patch10
|
||||||
%patch11
|
%patch11
|
||||||
%patch12
|
%patch12
|
||||||
%patch13
|
|
||||||
%if "%{TARGET}" == "avr"
|
%if "%{TARGET}" == "avr"
|
||||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||||
%patch90
|
%patch90
|
||||||
@ -375,6 +373,8 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Thu Sep 04 2008 schwab@suse.de
|
||||||
|
- Update to head of trunk.
|
||||||
* Fri Aug 08 2008 schwab@suse.de
|
* Fri Aug 08 2008 schwab@suse.de
|
||||||
- Update to head of trunk.
|
- Update to head of trunk.
|
||||||
* Fri Jul 18 2008 schwab@suse.de
|
* Fri Jul 18 2008 schwab@suse.de
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Sep 4 11:00:48 CEST 2008 - schwab@suse.de
|
||||||
|
|
||||||
|
- Update to head of trunk.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Aug 8 11:09:38 CEST 2008 - schwab@suse.de
|
Fri Aug 8 11:09:38 CEST 2008 - schwab@suse.de
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# spec file for package cross-i386-binutils (Version 2.18.50.20080808)
|
# spec file for package cross-i386-binutils (Version 2.18.50.20080904)
|
||||||
#
|
#
|
||||||
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
@ -52,7 +52,7 @@ License: GPL v2 or later; LGPL v2.1 or later; X11/MIT
|
|||||||
Group: Development/Tools/Building
|
Group: Development/Tools/Building
|
||||||
PreReq: %{install_info_prereq}
|
PreReq: %{install_info_prereq}
|
||||||
AutoReqProv: on
|
AutoReqProv: on
|
||||||
Version: 2.18.50.20080808
|
Version: 2.18.50.20080904
|
||||||
Release: 1
|
Release: 1
|
||||||
%define binutils_version %(echo %version | sed 's/\\.[0-9]\\{8\\}$//')
|
%define binutils_version %(echo %version | sed 's/\\.[0-9]\\{8\\}$//')
|
||||||
Summary: GNU binutils for Cross-Development to X86 Processors
|
Summary: GNU binutils for Cross-Development to X86 Processors
|
||||||
@ -70,7 +70,6 @@ Patch9: testsuite.diff
|
|||||||
Patch10: enable-targets.diff
|
Patch10: enable-targets.diff
|
||||||
Patch11: use-hashtype-both-by-default.diff
|
Patch11: use-hashtype-both-by-default.diff
|
||||||
Patch12: s390-pic-dso.diff
|
Patch12: s390-pic-dso.diff
|
||||||
Patch13: bfd-follow-gnu-debuglink.diff
|
|
||||||
Patch90: cross-avr-nesc-as.patch
|
Patch90: cross-avr-nesc-as.patch
|
||||||
Patch92: cross-avr-omit_section_dynsym.patch
|
Patch92: cross-avr-omit_section_dynsym.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
@ -170,7 +169,6 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
|||||||
%patch10
|
%patch10
|
||||||
%patch11
|
%patch11
|
||||||
%patch12
|
%patch12
|
||||||
%patch13
|
|
||||||
%if "%{TARGET}" == "avr"
|
%if "%{TARGET}" == "avr"
|
||||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||||
%patch90
|
%patch90
|
||||||
@ -375,6 +373,8 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Thu Sep 04 2008 schwab@suse.de
|
||||||
|
- Update to head of trunk.
|
||||||
* Fri Aug 08 2008 schwab@suse.de
|
* Fri Aug 08 2008 schwab@suse.de
|
||||||
- Update to head of trunk.
|
- Update to head of trunk.
|
||||||
* Fri Jul 18 2008 schwab@suse.de
|
* Fri Jul 18 2008 schwab@suse.de
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Sep 4 11:00:48 CEST 2008 - schwab@suse.de
|
||||||
|
|
||||||
|
- Update to head of trunk.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Aug 8 11:09:38 CEST 2008 - schwab@suse.de
|
Fri Aug 8 11:09:38 CEST 2008 - schwab@suse.de
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# spec file for package cross-ia64-binutils (Version 2.18.50.20080808)
|
# spec file for package cross-ia64-binutils (Version 2.18.50.20080904)
|
||||||
#
|
#
|
||||||
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
@ -52,7 +52,7 @@ License: GPL v2 or later; LGPL v2.1 or later; X11/MIT
|
|||||||
Group: Development/Tools/Building
|
Group: Development/Tools/Building
|
||||||
PreReq: %{install_info_prereq}
|
PreReq: %{install_info_prereq}
|
||||||
AutoReqProv: on
|
AutoReqProv: on
|
||||||
Version: 2.18.50.20080808
|
Version: 2.18.50.20080904
|
||||||
Release: 1
|
Release: 1
|
||||||
%define binutils_version %(echo %version | sed 's/\\.[0-9]\\{8\\}$//')
|
%define binutils_version %(echo %version | sed 's/\\.[0-9]\\{8\\}$//')
|
||||||
Summary: GNU binutils for Cross-Development to IA64 Processors
|
Summary: GNU binutils for Cross-Development to IA64 Processors
|
||||||
@ -70,7 +70,6 @@ Patch9: testsuite.diff
|
|||||||
Patch10: enable-targets.diff
|
Patch10: enable-targets.diff
|
||||||
Patch11: use-hashtype-both-by-default.diff
|
Patch11: use-hashtype-both-by-default.diff
|
||||||
Patch12: s390-pic-dso.diff
|
Patch12: s390-pic-dso.diff
|
||||||
Patch13: bfd-follow-gnu-debuglink.diff
|
|
||||||
Patch90: cross-avr-nesc-as.patch
|
Patch90: cross-avr-nesc-as.patch
|
||||||
Patch92: cross-avr-omit_section_dynsym.patch
|
Patch92: cross-avr-omit_section_dynsym.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
@ -170,7 +169,6 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
|||||||
%patch10
|
%patch10
|
||||||
%patch11
|
%patch11
|
||||||
%patch12
|
%patch12
|
||||||
%patch13
|
|
||||||
%if "%{TARGET}" == "avr"
|
%if "%{TARGET}" == "avr"
|
||||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||||
%patch90
|
%patch90
|
||||||
@ -375,6 +373,8 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Thu Sep 04 2008 schwab@suse.de
|
||||||
|
- Update to head of trunk.
|
||||||
* Fri Aug 08 2008 schwab@suse.de
|
* Fri Aug 08 2008 schwab@suse.de
|
||||||
- Update to head of trunk.
|
- Update to head of trunk.
|
||||||
* Fri Jul 18 2008 schwab@suse.de
|
* Fri Jul 18 2008 schwab@suse.de
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Sep 4 11:00:48 CEST 2008 - schwab@suse.de
|
||||||
|
|
||||||
|
- Update to head of trunk.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Aug 8 11:09:38 CEST 2008 - schwab@suse.de
|
Fri Aug 8 11:09:38 CEST 2008 - schwab@suse.de
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# spec file for package cross-mips-binutils (Version 2.18.50.20080808)
|
# spec file for package cross-mips-binutils (Version 2.18.50.20080904)
|
||||||
#
|
#
|
||||||
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
@ -52,7 +52,7 @@ License: GPL v2 or later; LGPL v2.1 or later; X11/MIT
|
|||||||
Group: Development/Tools/Building
|
Group: Development/Tools/Building
|
||||||
PreReq: %{install_info_prereq}
|
PreReq: %{install_info_prereq}
|
||||||
AutoReqProv: on
|
AutoReqProv: on
|
||||||
Version: 2.18.50.20080808
|
Version: 2.18.50.20080904
|
||||||
Release: 1
|
Release: 1
|
||||||
%define binutils_version %(echo %version | sed 's/\\.[0-9]\\{8\\}$//')
|
%define binutils_version %(echo %version | sed 's/\\.[0-9]\\{8\\}$//')
|
||||||
Summary: GNU binutils for Cross-Development to MIPS Processors
|
Summary: GNU binutils for Cross-Development to MIPS Processors
|
||||||
@ -70,7 +70,6 @@ Patch9: testsuite.diff
|
|||||||
Patch10: enable-targets.diff
|
Patch10: enable-targets.diff
|
||||||
Patch11: use-hashtype-both-by-default.diff
|
Patch11: use-hashtype-both-by-default.diff
|
||||||
Patch12: s390-pic-dso.diff
|
Patch12: s390-pic-dso.diff
|
||||||
Patch13: bfd-follow-gnu-debuglink.diff
|
|
||||||
Patch90: cross-avr-nesc-as.patch
|
Patch90: cross-avr-nesc-as.patch
|
||||||
Patch92: cross-avr-omit_section_dynsym.patch
|
Patch92: cross-avr-omit_section_dynsym.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
@ -170,7 +169,6 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
|||||||
%patch10
|
%patch10
|
||||||
%patch11
|
%patch11
|
||||||
%patch12
|
%patch12
|
||||||
%patch13
|
|
||||||
%if "%{TARGET}" == "avr"
|
%if "%{TARGET}" == "avr"
|
||||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||||
%patch90
|
%patch90
|
||||||
@ -375,6 +373,8 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Thu Sep 04 2008 schwab@suse.de
|
||||||
|
- Update to head of trunk.
|
||||||
* Fri Aug 08 2008 schwab@suse.de
|
* Fri Aug 08 2008 schwab@suse.de
|
||||||
- Update to head of trunk.
|
- Update to head of trunk.
|
||||||
* Fri Jul 18 2008 schwab@suse.de
|
* Fri Jul 18 2008 schwab@suse.de
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Sep 4 11:00:48 CEST 2008 - schwab@suse.de
|
||||||
|
|
||||||
|
- Update to head of trunk.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Aug 8 11:09:38 CEST 2008 - schwab@suse.de
|
Fri Aug 8 11:09:38 CEST 2008 - schwab@suse.de
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# spec file for package cross-ppc-binutils (Version 2.18.50.20080808)
|
# spec file for package cross-ppc-binutils (Version 2.18.50.20080904)
|
||||||
#
|
#
|
||||||
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
@ -52,7 +52,7 @@ License: GPL v2 or later; LGPL v2.1 or later; X11/MIT
|
|||||||
Group: Development/Tools/Building
|
Group: Development/Tools/Building
|
||||||
PreReq: %{install_info_prereq}
|
PreReq: %{install_info_prereq}
|
||||||
AutoReqProv: on
|
AutoReqProv: on
|
||||||
Version: 2.18.50.20080808
|
Version: 2.18.50.20080904
|
||||||
Release: 1
|
Release: 1
|
||||||
%define binutils_version %(echo %version | sed 's/\\.[0-9]\\{8\\}$//')
|
%define binutils_version %(echo %version | sed 's/\\.[0-9]\\{8\\}$//')
|
||||||
Summary: GNU binutils for Cross-Development to PowerPC Processors
|
Summary: GNU binutils for Cross-Development to PowerPC Processors
|
||||||
@ -70,7 +70,6 @@ Patch9: testsuite.diff
|
|||||||
Patch10: enable-targets.diff
|
Patch10: enable-targets.diff
|
||||||
Patch11: use-hashtype-both-by-default.diff
|
Patch11: use-hashtype-both-by-default.diff
|
||||||
Patch12: s390-pic-dso.diff
|
Patch12: s390-pic-dso.diff
|
||||||
Patch13: bfd-follow-gnu-debuglink.diff
|
|
||||||
Patch90: cross-avr-nesc-as.patch
|
Patch90: cross-avr-nesc-as.patch
|
||||||
Patch92: cross-avr-omit_section_dynsym.patch
|
Patch92: cross-avr-omit_section_dynsym.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
@ -170,7 +169,6 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
|||||||
%patch10
|
%patch10
|
||||||
%patch11
|
%patch11
|
||||||
%patch12
|
%patch12
|
||||||
%patch13
|
|
||||||
%if "%{TARGET}" == "avr"
|
%if "%{TARGET}" == "avr"
|
||||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||||
%patch90
|
%patch90
|
||||||
@ -375,6 +373,8 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Thu Sep 04 2008 schwab@suse.de
|
||||||
|
- Update to head of trunk.
|
||||||
* Fri Aug 08 2008 schwab@suse.de
|
* Fri Aug 08 2008 schwab@suse.de
|
||||||
- Update to head of trunk.
|
- Update to head of trunk.
|
||||||
* Fri Jul 18 2008 schwab@suse.de
|
* Fri Jul 18 2008 schwab@suse.de
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Sep 4 11:00:48 CEST 2008 - schwab@suse.de
|
||||||
|
|
||||||
|
- Update to head of trunk.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Aug 8 11:09:38 CEST 2008 - schwab@suse.de
|
Fri Aug 8 11:09:38 CEST 2008 - schwab@suse.de
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# spec file for package cross-ppc64-binutils (Version 2.18.50.20080808)
|
# spec file for package cross-ppc64-binutils (Version 2.18.50.20080904)
|
||||||
#
|
#
|
||||||
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
@ -52,7 +52,7 @@ License: GPL v2 or later; LGPL v2.1 or later
|
|||||||
Group: Development/Tools/Building
|
Group: Development/Tools/Building
|
||||||
PreReq: %{install_info_prereq}
|
PreReq: %{install_info_prereq}
|
||||||
AutoReqProv: on
|
AutoReqProv: on
|
||||||
Version: 2.18.50.20080808
|
Version: 2.18.50.20080904
|
||||||
Release: 1
|
Release: 1
|
||||||
%define binutils_version %(echo %version | sed 's/\\.[0-9]\\{8\\}$//')
|
%define binutils_version %(echo %version | sed 's/\\.[0-9]\\{8\\}$//')
|
||||||
Summary: GNU binutils for cross-development to PowerPC 64bit processors
|
Summary: GNU binutils for cross-development to PowerPC 64bit processors
|
||||||
@ -70,7 +70,6 @@ Patch9: testsuite.diff
|
|||||||
Patch10: enable-targets.diff
|
Patch10: enable-targets.diff
|
||||||
Patch11: use-hashtype-both-by-default.diff
|
Patch11: use-hashtype-both-by-default.diff
|
||||||
Patch12: s390-pic-dso.diff
|
Patch12: s390-pic-dso.diff
|
||||||
Patch13: bfd-follow-gnu-debuglink.diff
|
|
||||||
Patch90: cross-avr-nesc-as.patch
|
Patch90: cross-avr-nesc-as.patch
|
||||||
Patch92: cross-avr-omit_section_dynsym.patch
|
Patch92: cross-avr-omit_section_dynsym.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
@ -170,7 +169,6 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
|||||||
%patch10
|
%patch10
|
||||||
%patch11
|
%patch11
|
||||||
%patch12
|
%patch12
|
||||||
%patch13
|
|
||||||
%if "%{TARGET}" == "avr"
|
%if "%{TARGET}" == "avr"
|
||||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||||
%patch90
|
%patch90
|
||||||
@ -375,6 +373,8 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Thu Sep 04 2008 schwab@suse.de
|
||||||
|
- Update to head of trunk.
|
||||||
* Fri Aug 08 2008 schwab@suse.de
|
* Fri Aug 08 2008 schwab@suse.de
|
||||||
- Update to head of trunk.
|
- Update to head of trunk.
|
||||||
* Fri Jul 18 2008 schwab@suse.de
|
* Fri Jul 18 2008 schwab@suse.de
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Sep 4 11:00:48 CEST 2008 - schwab@suse.de
|
||||||
|
|
||||||
|
- Update to head of trunk.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Aug 8 11:09:38 CEST 2008 - schwab@suse.de
|
Fri Aug 8 11:09:38 CEST 2008 - schwab@suse.de
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# spec file for package cross-s390-binutils (Version 2.18.50.20080808)
|
# spec file for package cross-s390-binutils (Version 2.18.50.20080904)
|
||||||
#
|
#
|
||||||
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
@ -52,7 +52,7 @@ License: GPL v2 or later; LGPL v2.1 or later; X11/MIT
|
|||||||
Group: Development/Tools/Building
|
Group: Development/Tools/Building
|
||||||
PreReq: %{install_info_prereq}
|
PreReq: %{install_info_prereq}
|
||||||
AutoReqProv: on
|
AutoReqProv: on
|
||||||
Version: 2.18.50.20080808
|
Version: 2.18.50.20080904
|
||||||
Release: 1
|
Release: 1
|
||||||
%define binutils_version %(echo %version | sed 's/\\.[0-9]\\{8\\}$//')
|
%define binutils_version %(echo %version | sed 's/\\.[0-9]\\{8\\}$//')
|
||||||
Summary: GNU binutils for Cross-Development to S/390 Processors
|
Summary: GNU binutils for Cross-Development to S/390 Processors
|
||||||
@ -70,7 +70,6 @@ Patch9: testsuite.diff
|
|||||||
Patch10: enable-targets.diff
|
Patch10: enable-targets.diff
|
||||||
Patch11: use-hashtype-both-by-default.diff
|
Patch11: use-hashtype-both-by-default.diff
|
||||||
Patch12: s390-pic-dso.diff
|
Patch12: s390-pic-dso.diff
|
||||||
Patch13: bfd-follow-gnu-debuglink.diff
|
|
||||||
Patch90: cross-avr-nesc-as.patch
|
Patch90: cross-avr-nesc-as.patch
|
||||||
Patch92: cross-avr-omit_section_dynsym.patch
|
Patch92: cross-avr-omit_section_dynsym.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
@ -170,7 +169,6 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
|||||||
%patch10
|
%patch10
|
||||||
%patch11
|
%patch11
|
||||||
%patch12
|
%patch12
|
||||||
%patch13
|
|
||||||
%if "%{TARGET}" == "avr"
|
%if "%{TARGET}" == "avr"
|
||||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||||
%patch90
|
%patch90
|
||||||
@ -375,6 +373,8 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Thu Sep 04 2008 schwab@suse.de
|
||||||
|
- Update to head of trunk.
|
||||||
* Fri Aug 08 2008 schwab@suse.de
|
* Fri Aug 08 2008 schwab@suse.de
|
||||||
- Update to head of trunk.
|
- Update to head of trunk.
|
||||||
* Fri Jul 18 2008 schwab@suse.de
|
* Fri Jul 18 2008 schwab@suse.de
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Sep 4 11:00:48 CEST 2008 - schwab@suse.de
|
||||||
|
|
||||||
|
- Update to head of trunk.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Aug 8 11:09:38 CEST 2008 - schwab@suse.de
|
Fri Aug 8 11:09:38 CEST 2008 - schwab@suse.de
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# spec file for package cross-s390x-binutils (Version 2.18.50.20080808)
|
# spec file for package cross-s390x-binutils (Version 2.18.50.20080904)
|
||||||
#
|
#
|
||||||
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
@ -52,7 +52,7 @@ License: GPL v2 or later; LGPL v2.1 or later; X11/MIT
|
|||||||
Group: Development/Tools/Building
|
Group: Development/Tools/Building
|
||||||
PreReq: %{install_info_prereq}
|
PreReq: %{install_info_prereq}
|
||||||
AutoReqProv: on
|
AutoReqProv: on
|
||||||
Version: 2.18.50.20080808
|
Version: 2.18.50.20080904
|
||||||
Release: 1
|
Release: 1
|
||||||
%define binutils_version %(echo %version | sed 's/\\.[0-9]\\{8\\}$//')
|
%define binutils_version %(echo %version | sed 's/\\.[0-9]\\{8\\}$//')
|
||||||
Summary: GNU binutils for Cross-Development to 64-Bit S/390 Processors
|
Summary: GNU binutils for Cross-Development to 64-Bit S/390 Processors
|
||||||
@ -70,7 +70,6 @@ Patch9: testsuite.diff
|
|||||||
Patch10: enable-targets.diff
|
Patch10: enable-targets.diff
|
||||||
Patch11: use-hashtype-both-by-default.diff
|
Patch11: use-hashtype-both-by-default.diff
|
||||||
Patch12: s390-pic-dso.diff
|
Patch12: s390-pic-dso.diff
|
||||||
Patch13: bfd-follow-gnu-debuglink.diff
|
|
||||||
Patch90: cross-avr-nesc-as.patch
|
Patch90: cross-avr-nesc-as.patch
|
||||||
Patch92: cross-avr-omit_section_dynsym.patch
|
Patch92: cross-avr-omit_section_dynsym.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
@ -170,7 +169,6 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
|||||||
%patch10
|
%patch10
|
||||||
%patch11
|
%patch11
|
||||||
%patch12
|
%patch12
|
||||||
%patch13
|
|
||||||
%if "%{TARGET}" == "avr"
|
%if "%{TARGET}" == "avr"
|
||||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||||
%patch90
|
%patch90
|
||||||
@ -375,6 +373,8 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Thu Sep 04 2008 schwab@suse.de
|
||||||
|
- Update to head of trunk.
|
||||||
* Fri Aug 08 2008 schwab@suse.de
|
* Fri Aug 08 2008 schwab@suse.de
|
||||||
- Update to head of trunk.
|
- Update to head of trunk.
|
||||||
* Fri Jul 18 2008 schwab@suse.de
|
* Fri Jul 18 2008 schwab@suse.de
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Sep 4 11:00:48 CEST 2008 - schwab@suse.de
|
||||||
|
|
||||||
|
- Update to head of trunk.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Aug 8 11:09:38 CEST 2008 - schwab@suse.de
|
Fri Aug 8 11:09:38 CEST 2008 - schwab@suse.de
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# spec file for package cross-sh4-binutils (Version 2.18.50.20080808)
|
# spec file for package cross-sh4-binutils (Version 2.18.50.20080904)
|
||||||
#
|
#
|
||||||
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
@ -52,7 +52,7 @@ License: GPL v2 or later; LGPL v2.1 or later
|
|||||||
Group: Development/Tools/Building
|
Group: Development/Tools/Building
|
||||||
PreReq: %{install_info_prereq}
|
PreReq: %{install_info_prereq}
|
||||||
AutoReqProv: on
|
AutoReqProv: on
|
||||||
Version: 2.18.50.20080808
|
Version: 2.18.50.20080904
|
||||||
Release: 1
|
Release: 1
|
||||||
%define binutils_version %(echo %version | sed 's/\\.[0-9]\\{8\\}$//')
|
%define binutils_version %(echo %version | sed 's/\\.[0-9]\\{8\\}$//')
|
||||||
Summary: GNU binutils for Cross-Development to SH4 Processors
|
Summary: GNU binutils for Cross-Development to SH4 Processors
|
||||||
@ -70,7 +70,6 @@ Patch9: testsuite.diff
|
|||||||
Patch10: enable-targets.diff
|
Patch10: enable-targets.diff
|
||||||
Patch11: use-hashtype-both-by-default.diff
|
Patch11: use-hashtype-both-by-default.diff
|
||||||
Patch12: s390-pic-dso.diff
|
Patch12: s390-pic-dso.diff
|
||||||
Patch13: bfd-follow-gnu-debuglink.diff
|
|
||||||
Patch90: cross-avr-nesc-as.patch
|
Patch90: cross-avr-nesc-as.patch
|
||||||
Patch92: cross-avr-omit_section_dynsym.patch
|
Patch92: cross-avr-omit_section_dynsym.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
@ -169,7 +168,6 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
|||||||
%patch10
|
%patch10
|
||||||
%patch11
|
%patch11
|
||||||
%patch12
|
%patch12
|
||||||
%patch13
|
|
||||||
%if "%{TARGET}" == "avr"
|
%if "%{TARGET}" == "avr"
|
||||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||||
%patch90
|
%patch90
|
||||||
@ -374,6 +372,8 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Thu Sep 04 2008 schwab@suse.de
|
||||||
|
- Update to head of trunk.
|
||||||
* Fri Aug 08 2008 schwab@suse.de
|
* Fri Aug 08 2008 schwab@suse.de
|
||||||
- Update to head of trunk.
|
- Update to head of trunk.
|
||||||
* Fri Jul 18 2008 schwab@suse.de
|
* Fri Jul 18 2008 schwab@suse.de
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Sep 4 11:00:48 CEST 2008 - schwab@suse.de
|
||||||
|
|
||||||
|
- Update to head of trunk.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Aug 8 11:09:38 CEST 2008 - schwab@suse.de
|
Fri Aug 8 11:09:38 CEST 2008 - schwab@suse.de
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# spec file for package cross-sparc-binutils (Version 2.18.50.20080808)
|
# spec file for package cross-sparc-binutils (Version 2.18.50.20080904)
|
||||||
#
|
#
|
||||||
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
@ -52,7 +52,7 @@ License: GPL v2 or later; LGPL v2.1 or later; X11/MIT
|
|||||||
Group: Development/Tools/Building
|
Group: Development/Tools/Building
|
||||||
PreReq: %{install_info_prereq}
|
PreReq: %{install_info_prereq}
|
||||||
AutoReqProv: on
|
AutoReqProv: on
|
||||||
Version: 2.18.50.20080808
|
Version: 2.18.50.20080904
|
||||||
Release: 1
|
Release: 1
|
||||||
%define binutils_version %(echo %version | sed 's/\\.[0-9]\\{8\\}$//')
|
%define binutils_version %(echo %version | sed 's/\\.[0-9]\\{8\\}$//')
|
||||||
Summary: GNU binutils for Cross-Development to SPARC Processors
|
Summary: GNU binutils for Cross-Development to SPARC Processors
|
||||||
@ -70,7 +70,6 @@ Patch9: testsuite.diff
|
|||||||
Patch10: enable-targets.diff
|
Patch10: enable-targets.diff
|
||||||
Patch11: use-hashtype-both-by-default.diff
|
Patch11: use-hashtype-both-by-default.diff
|
||||||
Patch12: s390-pic-dso.diff
|
Patch12: s390-pic-dso.diff
|
||||||
Patch13: bfd-follow-gnu-debuglink.diff
|
|
||||||
Patch90: cross-avr-nesc-as.patch
|
Patch90: cross-avr-nesc-as.patch
|
||||||
Patch92: cross-avr-omit_section_dynsym.patch
|
Patch92: cross-avr-omit_section_dynsym.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
@ -170,7 +169,6 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
|||||||
%patch10
|
%patch10
|
||||||
%patch11
|
%patch11
|
||||||
%patch12
|
%patch12
|
||||||
%patch13
|
|
||||||
%if "%{TARGET}" == "avr"
|
%if "%{TARGET}" == "avr"
|
||||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||||
%patch90
|
%patch90
|
||||||
@ -375,6 +373,8 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Thu Sep 04 2008 schwab@suse.de
|
||||||
|
- Update to head of trunk.
|
||||||
* Fri Aug 08 2008 schwab@suse.de
|
* Fri Aug 08 2008 schwab@suse.de
|
||||||
- Update to head of trunk.
|
- Update to head of trunk.
|
||||||
* Fri Jul 18 2008 schwab@suse.de
|
* Fri Jul 18 2008 schwab@suse.de
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Sep 4 11:00:48 CEST 2008 - schwab@suse.de
|
||||||
|
|
||||||
|
- Update to head of trunk.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Aug 8 11:09:38 CEST 2008 - schwab@suse.de
|
Fri Aug 8 11:09:38 CEST 2008 - schwab@suse.de
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# spec file for package cross-spu-binutils (Version 2.18.50.20080808)
|
# spec file for package cross-spu-binutils (Version 2.18.50.20080904)
|
||||||
#
|
#
|
||||||
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
@ -52,7 +52,7 @@ License: GPL v2 or later; LGPL v2.1 or later; X11/MIT
|
|||||||
Group: Development/Tools/Building
|
Group: Development/Tools/Building
|
||||||
PreReq: %{install_info_prereq}
|
PreReq: %{install_info_prereq}
|
||||||
AutoReqProv: on
|
AutoReqProv: on
|
||||||
Version: 2.18.50.20080808
|
Version: 2.18.50.20080904
|
||||||
Release: 1
|
Release: 1
|
||||||
%define binutils_version %(echo %version | sed 's/\\.[0-9]\\{8\\}$//')
|
%define binutils_version %(echo %version | sed 's/\\.[0-9]\\{8\\}$//')
|
||||||
Summary: GNU binutils for Cross-Development to SPU Processors
|
Summary: GNU binutils for Cross-Development to SPU Processors
|
||||||
@ -70,7 +70,6 @@ Patch9: testsuite.diff
|
|||||||
Patch10: enable-targets.diff
|
Patch10: enable-targets.diff
|
||||||
Patch11: use-hashtype-both-by-default.diff
|
Patch11: use-hashtype-both-by-default.diff
|
||||||
Patch12: s390-pic-dso.diff
|
Patch12: s390-pic-dso.diff
|
||||||
Patch13: bfd-follow-gnu-debuglink.diff
|
|
||||||
Patch90: cross-avr-nesc-as.patch
|
Patch90: cross-avr-nesc-as.patch
|
||||||
Patch92: cross-avr-omit_section_dynsym.patch
|
Patch92: cross-avr-omit_section_dynsym.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
@ -170,7 +169,6 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
|||||||
%patch10
|
%patch10
|
||||||
%patch11
|
%patch11
|
||||||
%patch12
|
%patch12
|
||||||
%patch13
|
|
||||||
%if "%{TARGET}" == "avr"
|
%if "%{TARGET}" == "avr"
|
||||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||||
%patch90
|
%patch90
|
||||||
@ -375,6 +373,8 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Thu Sep 04 2008 schwab@suse.de
|
||||||
|
- Update to head of trunk.
|
||||||
* Fri Aug 08 2008 schwab@suse.de
|
* Fri Aug 08 2008 schwab@suse.de
|
||||||
- Update to head of trunk.
|
- Update to head of trunk.
|
||||||
* Fri Jul 18 2008 schwab@suse.de
|
* Fri Jul 18 2008 schwab@suse.de
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Sep 4 11:00:48 CEST 2008 - schwab@suse.de
|
||||||
|
|
||||||
|
- Update to head of trunk.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Aug 8 11:09:38 CEST 2008 - schwab@suse.de
|
Fri Aug 8 11:09:38 CEST 2008 - schwab@suse.de
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# spec file for package cross-x86_64-binutils (Version 2.18.50.20080808)
|
# spec file for package cross-x86_64-binutils (Version 2.18.50.20080904)
|
||||||
#
|
#
|
||||||
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
@ -52,7 +52,7 @@ License: GPL v2 or later; LGPL v2.1 or later; X11/MIT
|
|||||||
Group: Development/Tools/Building
|
Group: Development/Tools/Building
|
||||||
PreReq: %{install_info_prereq}
|
PreReq: %{install_info_prereq}
|
||||||
AutoReqProv: on
|
AutoReqProv: on
|
||||||
Version: 2.18.50.20080808
|
Version: 2.18.50.20080904
|
||||||
Release: 1
|
Release: 1
|
||||||
%define binutils_version %(echo %version | sed 's/\\.[0-9]\\{8\\}$//')
|
%define binutils_version %(echo %version | sed 's/\\.[0-9]\\{8\\}$//')
|
||||||
Summary: GNU binutils for Cross-Development to X86-64 Processors
|
Summary: GNU binutils for Cross-Development to X86-64 Processors
|
||||||
@ -70,7 +70,6 @@ Patch9: testsuite.diff
|
|||||||
Patch10: enable-targets.diff
|
Patch10: enable-targets.diff
|
||||||
Patch11: use-hashtype-both-by-default.diff
|
Patch11: use-hashtype-both-by-default.diff
|
||||||
Patch12: s390-pic-dso.diff
|
Patch12: s390-pic-dso.diff
|
||||||
Patch13: bfd-follow-gnu-debuglink.diff
|
|
||||||
Patch90: cross-avr-nesc-as.patch
|
Patch90: cross-avr-nesc-as.patch
|
||||||
Patch92: cross-avr-omit_section_dynsym.patch
|
Patch92: cross-avr-omit_section_dynsym.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
@ -170,7 +169,6 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
|||||||
%patch10
|
%patch10
|
||||||
%patch11
|
%patch11
|
||||||
%patch12
|
%patch12
|
||||||
%patch13
|
|
||||||
%if "%{TARGET}" == "avr"
|
%if "%{TARGET}" == "avr"
|
||||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||||
%patch90
|
%patch90
|
||||||
@ -375,6 +373,8 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Thu Sep 04 2008 schwab@suse.de
|
||||||
|
- Update to head of trunk.
|
||||||
* Fri Aug 08 2008 schwab@suse.de
|
* Fri Aug 08 2008 schwab@suse.de
|
||||||
- Update to head of trunk.
|
- Update to head of trunk.
|
||||||
* Fri Jul 18 2008 schwab@suse.de
|
* Fri Jul 18 2008 schwab@suse.de
|
||||||
|
Loading…
Reference in New Issue
Block a user