index : pacman | |
Archlinux32 fork of pacman | gitolite user |
summaryrefslogtreecommitdiff |
author | Andrew Fyfe <andrew@neptune-one.net> | 2007-07-12 20:12:08 +0100 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2007-07-12 15:22:16 -0400 |
commit | fd3a1a92c8ffe5230e40a027838442752a843da9 (patch) | |
tree | 99f1314a400a3ea8d6cd4c112ca0f6cf3746d94e /scripts | |
parent | 20f73d6299c08fa79c2c8edd3d1955e208e701cb (diff) |
-rw-r--r-- | scripts/makepkg.sh.in | 2 |
diff --git a/scripts/makepkg.sh.in b/scripts/makepkg.sh.in index 137d58e5..d340252e 100644 --- a/scripts/makepkg.sh.in +++ b/scripts/makepkg.sh.in @@ -447,9 +447,11 @@ download_sources() { local file=$(strip_url "$netfile") if [ -f "$startdir/$file" ]; then msg2 "$(gettext "Found %s in build dir")" "$file" + cp -s --remove-destination "$startdir/$file" "$srcdir/" continue elif [ -f "$SRCDEST/$file" ]; then msg2 "$(gettext "Using cached copy of %s")" "$file" + cp -s --remove-destination "$SRCDEST/$file" "$srcdir/" continue fi |