#!/bin/sh -e ## 012_check_ldrunpath_length.dpatch by Chris Chimelis ## ## All lines beginning with `## DP:' are a description of the patch. ## DP: Only generate an RPATH entry if LD_RUN_PATH is not empty, for ## DP: cases where -rpath isn't specified. (#151024) if [ $# -ne 1 ]; then echo >&2 "`basename $0`: script expects -patch|-unpatch as argument" exit 1 fi [ -f debian/patches/00patch-opts ] && . debian/patches/00patch-opts patch_opts="${patch_opts:--f --no-backup-if-mismatch}" case "$1" in -patch) patch $patch_opts -p1 < $0;; -unpatch) patch $patch_opts -p1 -R < $0;; *) echo >&2 "`basename $0`: script expects -patch|-unpatch as argument" exit 1;; esac exit 0 Upstream-Status: Inappropriate [debian patch] @DPATCH@ Index: binutils-2.22/ld/emultempl/elf32.em =================================================================== --- binutils-2.22.orig/ld/emultempl/elf32.em +++ binutils-2.22/ld/emultempl/elf32.em @@ -1273,6 +1273,8 @@ fragment <link_next) if (bfd_get_flavour (abfd) == bfd_target_elf_flavour)