patches/binutils/2.17.50.0.8/300-012_check_ldrunpath_length.patch
changeset 1 eeea35fbf182
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/patches/binutils/2.17.50.0.8/300-012_check_ldrunpath_length.patch	Sat Feb 24 11:00:05 2007 +0000
     1.3 @@ -0,0 +1,47 @@
     1.4 +#!/bin/sh -e
     1.5 +## 012_check_ldrunpath_length.dpatch by Chris Chimelis <chris@debian.org>
     1.6 +##
     1.7 +## All lines beginning with `## DP:' are a description of the patch.
     1.8 +## DP: Only generate an RPATH entry if LD_RUN_PATH is not empty, for
     1.9 +## DP: cases where -rpath isn't specified. (#151024)
    1.10 +
    1.11 +if [ $# -ne 1 ]; then
    1.12 +    echo >&2 "`basename $0`: script expects -patch|-unpatch as argument"
    1.13 +    exit 1
    1.14 +fi
    1.15 +
    1.16 +[ -f debian/patches/00patch-opts ] && . debian/patches/00patch-opts
    1.17 +patch_opts="${patch_opts:--f --no-backup-if-mismatch}"
    1.18 +
    1.19 +case "$1" in
    1.20 +       -patch) patch $patch_opts -p1 < $0;;
    1.21 +       -unpatch) patch $patch_opts -p1 -R < $0;;
    1.22 +        *)
    1.23 +                echo >&2 "`basename $0`: script expects -patch|-unpatch as argument"
    1.24 +                exit 1;;
    1.25 +esac
    1.26 +
    1.27 +exit 0
    1.28 +
    1.29 +@DPATCH@
    1.30 +diff -urNad /home/james/debian/packages/binutils/new/binutils-2.15/ld/emultempl/elf32.em binutils-2.15/ld/emultempl/elf32.em
    1.31 +--- /home/james/debian/packages/binutils/new/binutils-2.15/ld/emultempl/elf32.em	2004-05-21 23:12:58.000000000 +0100
    1.32 ++++ binutils-2.15/ld/emultempl/elf32.em	2004-05-21 23:12:59.000000000 +0100
    1.33 +@@ -692,6 +692,8 @@
    1.34 + 	      && command_line.rpath == NULL)
    1.35 + 	    {
    1.36 + 	      lib_path = (const char *) getenv ("LD_RUN_PATH");
    1.37 ++	      if ((lib_path) && (strlen (lib_path) == 0))
    1.38 ++		  lib_path = NULL;
    1.39 + 	      if (gld${EMULATION_NAME}_search_needed (lib_path, &n,
    1.40 + 						      force))
    1.41 + 		break;
    1.42 +@@ -871,6 +873,8 @@
    1.43 +   rpath = command_line.rpath;
    1.44 +   if (rpath == NULL)
    1.45 +     rpath = (const char *) getenv ("LD_RUN_PATH");
    1.46 ++  if ((rpath) && (strlen (rpath) == 0))
    1.47 ++      rpath = NULL;
    1.48 +   if (! (bfd_elf_size_dynamic_sections
    1.49 + 	 (output_bfd, command_line.soname, rpath,
    1.50 + 	  command_line.filter_shlib,