From 61f250f3766061125f2387ac9d8a9f8c167caba1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?= Date: Thu, 17 Mar 2022 23:07:00 +0700 Subject: [PATCH] xob: fix crash When building xob without any arguments, xob will be built with SYSCONFDIR points to /usr/local/etc. Thus, crash at runtime. Reported-by: Urs Schulz Close #35009 --- srcpkgs/xob/template | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/srcpkgs/xob/template b/srcpkgs/xob/template index f2d1701f523..dfac3851302 100644 --- a/srcpkgs/xob/template +++ b/srcpkgs/xob/template @@ -1,9 +1,10 @@ # Template file for 'xob' pkgname=xob version=0.3 -revision=1 +revision=2 build_style=gnu-makefile -make_install_args="prefix=/usr sysconfdir=/etc" +make_build_args="prefix=/usr sysconfdir=/etc" +make_install_args="$make_build_args" make_use_env=yes hostmakedepends="pkg-config" makedepends="libX11-devel libconfig-devel libXrender-devel"