summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAllan McRae <allan@archlinux.org>2017-07-06 13:26:04 +1000
committerAllan McRae <allan@archlinux.org>2017-07-06 13:26:04 +1000
commitd170c4580cba6af1ec50411f3b1e0621165c6300 (patch)
treeb161458d2c84d29aa98d3eba088e42b8c819023c
parentb14ff6603809019f8f92f1650872cb93a110e67e (diff)
downloadpacman-d170c4580cba6af1ec50411f3b1e0621165c6300.tar.gz
pacman-d170c4580cba6af1ec50411f3b1e0621165c6300.zip
makepkg: do not write basever
Since 8a02abcf19, this attribute will never exist. Remove check to write it. Signed-off-by: Allan McRae <allan@archlinux.org>
-rw-r--r--scripts/makepkg.sh.in3
1 files changed, 0 insertions, 3 deletions
diff --git a/scripts/makepkg.sh.in b/scripts/makepkg.sh.in
index 1f1217f4..f9872355 100644
--- a/scripts/makepkg.sh.in
+++ b/scripts/makepkg.sh.in
@@ -644,9 +644,6 @@ write_pkginfo() {
local fullver=$(get_full_version)
write_kv_pair "pkgver" "$fullver"
- if [[ "$fullver" != "$basever" ]]; then
- write_kv_pair "basever" "$basever"
- fi
# TODO: all fields should have this treatment
local spd="${pkgdesc//+([[:space:]])/ }"