summaryrefslogtreecommitdiffstats
path: root/scripts/makepkg.sh.in
diff options
context:
space:
mode:
authorAllan McRae <allan@archlinux.org>2011-06-28 14:47:35 +0200
committerDan McGee <dan@archlinux.org>2011-06-30 17:28:18 +0200
commite92905a2c8c14c7855e2841f44d3c139aa40844c (patch)
tree25592e3224f949c3ee79fc9fe972c4ffc9bb2594 /scripts/makepkg.sh.in
parent9aab1440cacf143b62f05ccfac0e7917ef9d4c45 (diff)
downloadpacman-e92905a2c8c14c7855e2841f44d3c139aa40844c.tar.gz
pacman-e92905a2c8c14c7855e2841f44d3c139aa40844c.tar.xz
makepkg: fix removing symbolic link
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 <allan@archlinux.org> Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'scripts/makepkg.sh.in')
-rw-r--r--scripts/makepkg.sh.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/makepkg.sh.in b/scripts/makepkg.sh.in
index ed5cdef7..edfa9e31 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