summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorAllan McRae <allan@archlinux.org>2009-02-23 12:32:10 +0100
committerDan McGee <dan@archlinux.org>2009-02-24 03:18:08 +0100
commita309a016bfed9f67452f2a6556fb4391fd55b34e (patch)
tree40f94c756fecb170c7865adf1ae225ca856b0146 /scripts
parente7daa59f845f073511c632a972215d047f292f25 (diff)
downloadpacman-a309a016bfed9f67452f2a6556fb4391fd55b34e.tar.gz
pacman-a309a016bfed9f67452f2a6556fb4391fd55b34e.tar.xz
makepkg: fix updating pkgrel with pkgver in SCM packages
Commit 1e656c0a introduced the changing of pkgrel to 1 when the pkgver was updated in SCM PKGBUILDs. However, the output in the "Making package:" was wrong. Attempting to fix that created another bug (FS#13416). Interestingly, pkgver was only ever being updated in the fakeroot stage which caused this problem. Now both pkgver and pkgrel are updated after the first devel_check and devel_update. Enjoy the really long explaination for a two line fix... Signed-off-by: Allan McRae <allan@archlinux.org> Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'scripts')
-rw-r--r--scripts/makepkg.sh.in2
1 files changed, 0 insertions, 2 deletions
diff --git a/scripts/makepkg.sh.in b/scripts/makepkg.sh.in
index 42b1092a..d05d2403 100644
--- a/scripts/makepkg.sh.in
+++ b/scripts/makepkg.sh.in
@@ -1072,8 +1072,6 @@ devel_check() {
if [ "$newpkgver" != "" ]; then
msg2 "$(gettext "Version found: %s")" "$newpkgver"
- pkgver=$newpkgver
- pkgrel=1
fi
else