aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKevin Daudt <kdaudt@alpinelinux.org>2022-11-05 17:10:10 +0000
committerKevin Daudt <kdaudt@alpinelinux.org>2022-11-05 17:10:38 +0000
commit98188e340fb6c9b281239ddd0be044682910c3cf (patch)
tree2aad6a93acc00659c9626bfe7605a6e3624da762
parentb562844b584cec4e8d60902f6b75be45dc3c44b5 (diff)
community/spice-vdagent: fix sysconfdir
It defaults to PREFIX/etc, which is not what it should be.
-rw-r--r--community/spice-vdagent/APKBUILD3
1 files changed, 2 insertions, 1 deletions
diff --git a/community/spice-vdagent/APKBUILD b/community/spice-vdagent/APKBUILD
index 58ab4bdf0ab..8d7e0a43101 100644
--- a/community/spice-vdagent/APKBUILD
+++ b/community/spice-vdagent/APKBUILD
@@ -1,7 +1,7 @@
# Maintainer: Kevin Daudt <kdaudt@alpinelinux.org>
pkgname=spice-vdagent
pkgver=0.22.1
-pkgrel=0
+pkgrel=1
pkgdesc="Spice guest agent for Linux"
url="https://spice-space.org/"
arch="all"
@@ -28,6 +28,7 @@ build() {
./configure \
--prefix=/usr \
--localstatedir=/var \
+ --sysconfdir=/etc \
--with-session-info=none
make
}