_check_ldrunpath_length
authorMatthias Klose <doko@debian.org>
Fri, 5 Jan 2018 22:44:48 +0000 (22:44 +0000)
committerMatthias Klose <doko@debian.org>
Fri, 5 Jan 2018 22:44:48 +0000 (22:44 +0000)
cases where -rpath isn't specified. (#151024)

Gbp-Pq: Name 012_check_ldrunpath_length.patch

ld/emultempl/elf32.em

index 9ac184031698d76372b6c662f3f24d4bdad37989..7bd05fc8dd5a099d6a82f5585924f6f5a3e569f9 100644 (file)
@@ -1463,6 +1463,8 @@ fragment <<EOF
              && command_line.rpath == NULL)
            {
              path = (const char *) getenv ("LD_RUN_PATH");
+             if ((path) && (strlen (path) == 0))
+               path = NULL;
              if (path
                  && gld${EMULATION_NAME}_search_needed (path, &n, force))
                break;
@@ -1740,6 +1742,8 @@ gld${EMULATION_NAME}_before_allocation (void)
   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)