diff options
Diffstat (limited to 'app-admin/stow/files/stow-2.2.0-avoid-precedence-warning.patch')
-rw-r--r-- | app-admin/stow/files/stow-2.2.0-avoid-precedence-warning.patch | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/app-admin/stow/files/stow-2.2.0-avoid-precedence-warning.patch b/app-admin/stow/files/stow-2.2.0-avoid-precedence-warning.patch deleted file mode 100644 index 75838e3a7c62..000000000000 --- a/app-admin/stow/files/stow-2.2.0-avoid-precedence-warning.patch +++ /dev/null @@ -1,13 +0,0 @@ ---- lib/Stow.pm.in -+++ lib/Stow.pm.in -@@ -1734,8 +1734,8 @@ sub read_a_link { - } - elsif (-l $path) { - debug(4, " read_a_link($path): real link"); -- return readlink $path -- or error("Could not read link: $path"); -+ my $target = readlink $path or error("Could not read link: $path ($!)"); -+ return $target; - } - internal_error("read_a_link() passed a non link path: $path\n"); - } |