diff options
author | Allan McRae <allan@archlinux.org> | 2017-07-06 05:26:04 +0200 |
---|---|---|
committer | Allan McRae <allan@archlinux.org> | 2017-07-06 05:26:04 +0200 |
commit | d170c4580cba6af1ec50411f3b1e0621165c6300 (patch) | |
tree | b161458d2c84d29aa98d3eba088e42b8c819023c /scripts | |
parent | b14ff6603809019f8f92f1650872cb93a110e67e (diff) | |
download | pacman-d170c4580cba6af1ec50411f3b1e0621165c6300.tar.gz pacman-d170c4580cba6af1ec50411f3b1e0621165c6300.tar.xz |
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>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/makepkg.sh.in | 3 |
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:]])/ }" |