From 61eea455be3ac10fa40099b811830673d18f546e Mon Sep 17 00:00:00 2001 From: Gustavo Zacarias Date: Mon, 22 Apr 2013 11:47:47 -0300 Subject: binutils: move patches to new model On commit 5538e4766201aa0c1c23721cfc99cbbde595964b the versioned package patches changed the directory structure but the packages weren't fixed. Signed-off-by: Gustavo Zacarias Signed-off-by: Peter Korsgaard --- .../300-012_check_ldrunpath_length.patch | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 package/binutils/binutils-2.22/300-012_check_ldrunpath_length.patch (limited to 'package/binutils/binutils-2.22/300-012_check_ldrunpath_length.patch') diff --git a/package/binutils/binutils-2.22/300-012_check_ldrunpath_length.patch b/package/binutils/binutils-2.22/300-012_check_ldrunpath_length.patch deleted file mode 100644 index df783109b..000000000 --- a/package/binutils/binutils-2.22/300-012_check_ldrunpath_length.patch +++ /dev/null @@ -1,21 +0,0 @@ -diff -Nura binutils-2.21.orig/ld/emultempl/elf32.em binutils-2.21/ld/emultempl/elf32.em ---- binutils-2.21.orig/ld/emultempl/elf32.em 2010-10-29 09:10:36.000000000 -0300 -+++ binutils-2.21/ld/emultempl/elf32.em 2010-12-10 09:26:56.746102724 -0300 -@@ -1270,6 +1270,8 @@ - && command_line.rpath == NULL) - { - lib_path = (const char *) getenv ("LD_RUN_PATH"); -+ if ((lib_path) && (strlen (lib_path) == 0)) -+ lib_path = NULL; - if (gld${EMULATION_NAME}_search_needed (lib_path, &n, - force)) - break; -@@ -1497,6 +1499,8 @@ - rpath = command_line.rpath; - if (rpath == NULL) - rpath = (const char *) getenv ("LD_RUN_PATH"); -+ if ((rpath) && (strlen (rpath) == 0)) -+ rpath = NULL; - - for (abfd = link_info.input_bfds; abfd; abfd = abfd->link_next) - if (bfd_get_flavour (abfd) == bfd_target_elf_flavour) -- cgit v1.2.3