OpenSDE Packages Database (without history before r20070)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

99 lines
3.3 KiB

  1. # --- SDE-COPYRIGHT-NOTE-BEGIN ---
  2. # This copyright note is auto-generated by ./scripts/Create-CopyPatch.
  3. #
  4. # Filename: package/.../gdb/installed-by-binutils.patch
  5. # Copyright (C) 2011 The OpenSDE Project
  6. # Copyright (C) 2004 - 2006 The T2 SDE Project
  7. #
  8. # More information can be found in the files COPYING and README.
  9. #
  10. # This patch file is dual-licensed. It is available under the license the
  11. # patched project is licensed under, as long as it is an OpenSource license
  12. # as defined at http://www.opensource.org/ (e.g. BSD, X11) or under the terms
  13. # of the GNU General Public License as published by the Free Software
  14. # Foundation; either version 2 of the License, or (at your option) any later
  15. # version.
  16. # --- SDE-COPYRIGHT-NOTE-END ---
  17. From: Christian Wiese <chris@opensde.org>
  18. Date: Fri, 19 Aug 2011 13:10:44 +0200
  19. Subject: [PATCH 1/1] fixed to not install files installed by binutils
  20. Do not install the bfd and opcode libraries and/or other files -
  21. the binutils package supplies them.
  22. - Clifford Wolf & Rene Rebe
  23. - rediffed for gdb 6.3 by Valentin Ziegler
  24. - re-rediffed for gdb 6.4 by Rene Rebe
  25. - re-rediffed for gdb 6.5 by Aldas Nabazas
  26. - re-rediffed for gdb 7.3 by Christian Wiese
  27. ---
  28. bfd/Makefile.in | 3 +--
  29. etc/Makefile.in | 2 +-
  30. libiberty/Makefile.in | 2 +-
  31. opcodes/Makefile.in | 2 +-
  32. 4 files changed, 4 insertions(+), 5 deletions(-)
  33. diff --git gdb-7.3/bfd/Makefile.in gdb-7.3/bfd/Makefile.in
  34. index 2cbf6a0..178aeb8 100644
  35. --- gdb-7.3/bfd/Makefile.in
  36. +++ gdb-7.3/bfd/Makefile.in
  37. @@ -323,7 +323,7 @@ ACLOCAL_AMFLAGS = -I . -I .. -I ../config
  38. # RELEASE=y
  39. INCDIR = $(srcdir)/../include
  40. CSEARCH = -I. -I$(srcdir) -I$(INCDIR)
  41. -SUBDIRS = doc po
  42. +SUBDIRS = doc
  43. bfddocdir = doc
  44. libbfd_la_LDFLAGS = $(am__append_1) -release `cat libtool-soversion` \
  45. @SHARED_LDFLAGS@ $(am__empty)
  46. @@ -1689,7 +1689,6 @@ installdirs-am:
  47. test -z "$$dir" || $(MKDIR_P) "$$dir"; \
  48. done
  49. install: $(BUILT_SOURCES)
  50. - $(MAKE) $(AM_MAKEFLAGS) install-recursive
  51. install-exec: install-exec-recursive
  52. install-data: install-data-recursive
  53. uninstall: uninstall-recursive
  54. diff --git gdb-7.3/etc/Makefile.in gdb-7.3/etc/Makefile.in
  55. index 0d19c13..31681a1 100644
  56. --- gdb-7.3/etc/Makefile.in
  57. +++ gdb-7.3/etc/Makefile.in
  58. @@ -64,7 +64,7 @@ PDFFILES = standards.pdf configure.pdf
  59. HTMLFILES = standards.html configure.html
  60. all: info
  61. -install install-strip: install-info
  62. +install install-strip:
  63. uninstall:
  64. diff --git gdb-7.3/libiberty/Makefile.in gdb-7.3/libiberty/Makefile.in
  65. index ef35453..39ed818 100644
  66. --- gdb-7.3/libiberty/Makefile.in
  67. +++ gdb-7.3/libiberty/Makefile.in
  68. @@ -340,7 +340,7 @@ libiberty.html : $(srcdir)/libiberty.texi $(TEXISRC)
  69. @MAINT@ echo stamp > stamp-functions
  70. INSTALL_DEST = @INSTALL_DEST@
  71. -install: install_to_$(INSTALL_DEST) install-subdir
  72. +install:
  73. install-strip: install
  74. .PHONY: install install-strip
  75. diff --git gdb-7.3/opcodes/Makefile.in gdb-7.3/opcodes/Makefile.in
  76. index 8928b1b..1743afe 100644
  77. --- gdb-7.3/opcodes/Makefile.in
  78. +++ gdb-7.3/opcodes/Makefile.in
  79. @@ -1057,7 +1057,7 @@ installdirs-am:
  80. for dir in "$(DESTDIR)$(bfdlibdir)" "$(DESTDIR)$(bfdincludedir)"; do \
  81. test -z "$$dir" || $(MKDIR_P) "$$dir"; \
  82. done
  83. -install: install-recursive
  84. +install:
  85. install-exec: install-exec-recursive
  86. install-data: install-data-recursive
  87. uninstall: uninstall-recursive
  88. --
  89. 1.7.2.3