The path was not being stripped from $file before prefixing with
$srcdir resulting in the attempted removal of a very weird
filename.

Signed-off-by: Allan McRae <[email protected]>
---
 scripts/makepkg.sh.in |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/scripts/makepkg.sh.in b/scripts/makepkg.sh.in
index ed5cdef..edfa9e3 100644
--- a/scripts/makepkg.sh.in
+++ b/scripts/makepkg.sh.in
@@ -518,7 +518,7 @@ download_sources() {
                local file=$(get_filepath "$netfile" || true)
                if [[ -n "$file" ]]; then
                        msg2 "$(gettext "Found %s")" "${file##*/}"
-                       rm -f "$srcdir/$file"
+                       rm -f "$srcdir/${file##*/}"
                        ln -s "$file" "$srcdir/"
                        continue
                fi
-- 
1.7.6


Reply via email to