mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2024-12-21 05:43:09 +00:00
86c2982568
This refreshes the line numbers, removes any fuzz (which would make any future forward ports easier) and standardizes the patch/file headers (which makes them easier to read). Signed-off-by: Alexey Neyman <stilor@att.net>
25 lines
664 B
Diff
25 lines
664 B
Diff
---
|
|
ld/ldelf.c | 4 ++++
|
|
1 file changed, 4 insertions(+)
|
|
|
|
--- a/ld/ldelf.c
|
|
+++ b/ld/ldelf.c
|
|
@@ -1250,6 +1250,8 @@
|
|
&& command_line.rpath == NULL)
|
|
{
|
|
path = (const char *) getenv ("LD_RUN_PATH");
|
|
+ if (path && *path == '\0')
|
|
+ path = NULL;
|
|
if (path
|
|
&& ldelf_search_needed (path, &n, force,
|
|
is_linux, elfsize))
|
|
@@ -1610,6 +1612,8 @@
|
|
rpath = command_line.rpath;
|
|
if (rpath == NULL)
|
|
rpath = (const char *) getenv ("LD_RUN_PATH");
|
|
+ if (rpath && *rpath == '\0')
|
|
+ rpath = NULL;
|
|
|
|
for (abfd = link_info.input_bfds; abfd; abfd = abfd->link.next)
|
|
if (bfd_get_flavour (abfd) == bfd_target_elf_flavour)
|