summaryrefslogtreecommitdiff
path: root/server/autobuild
diff options
context:
space:
mode:
authorTimo Myyrä <timo.myyra@bittivirhe.fi>2022-01-02 10:25:56 +0200
committerVedang Manerikar <ved.manerikar@gmail.com>2022-01-03 08:16:22 +0530
commitbfe963ab4f375396954bcf4ee136a9ef4cf9204e (patch)
treebf6a431d94c9d0a3eae749b4dc5ea23dfcd7e2e4 /server/autobuild
parent5a3a14470db4ab4d7310d7d7a647c9764c48d700 (diff)
Fix: use correct multiversion package syntax on OpenBSD
OpenBSD pkg_add(1) uses `package%version` syntax to specify which version of the package to use when there are multiple versions packaged. Use it for `autoconf` and `automake`. Closes: politza#696
Diffstat (limited to 'server/autobuild')
-rwxr-xr-xserver/autobuild2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/autobuild b/server/autobuild
index 7db0f0f..4d743b9 100755
--- a/server/autobuild
+++ b/server/autobuild
@@ -249,7 +249,7 @@ os_openbsd() {
fi
PKGCMD=pkg_add
PKGARGS="-uU"
- PACKAGES="autoconf-2.69p2 automake-1.15.1 poppler poppler-utils png"
+ PACKAGES="autoconf%2.69 automake%1.15 poppler poppler-utils png"
export AUTOCONF_VERSION=2.69
export AUTOMAKE_VERSION=1.15
if whereis clang++ ;then