summaryrefslogtreecommitdiffstats
path: root/abs/core-testing/pacman/pacman.install
diff options
context:
space:
mode:
authorJames Meyer <james.meyer@operamail.com>2010-02-04 00:25:22 (GMT)
committerJames Meyer <james.meyer@operamail.com>2010-02-04 00:25:22 (GMT)
commit13c5a3d4c1d8e6fd299222a5b12a1c31bf3ccd28 (patch)
treea82c6a836c29ebd3b2fa7ac43b61d1cfa1f54349 /abs/core-testing/pacman/pacman.install
parent9cd63c26a0ff20a3b3895578659629930fe320ea (diff)
downloadlinhes_pkgbuild-13c5a3d4c1d8e6fd299222a5b12a1c31bf3ccd28.zip
linhes_pkgbuild-13c5a3d4c1d8e6fd299222a5b12a1c31bf3ccd28.tar.gz
linhes_pkgbuild-13c5a3d4c1d8e6fd299222a5b12a1c31bf3ccd28.tar.bz2
pacman: update to 3.3.3
This was needed for the new samba.
Diffstat (limited to 'abs/core-testing/pacman/pacman.install')
-rw-r--r--abs/core-testing/pacman/pacman.install15
1 files changed, 8 insertions, 7 deletions
diff --git a/abs/core-testing/pacman/pacman.install b/abs/core-testing/pacman/pacman.install
index 46e4763..ed10f0d 100644
--- a/abs/core-testing/pacman/pacman.install
+++ b/abs/core-testing/pacman/pacman.install
@@ -1,10 +1,15 @@
+#!/bin/sh
# arg 1: the new package version
# arg 2: the old package version
post_upgrade() {
# one time stuff for md5sum issue with older pacman versions
- if [ "$(vercmp $2 3.0.2)" -lt 0 ]; then
- _resetbackups
- fi
+ if [ -f /usr/bin/vercmp ]
+ then
+ if [ "$(vercmp $2 3.0.2)" -lt 0 ]
+ then
+ _resetbackups
+ fi
+ fi
}
_resetbackups() {
@@ -50,7 +55,3 @@ _resetbackups() {
fi
done
}
-
-op=$1
-shift
-$op $*