xdg-utils: use bash in xdg-setttings

closes #14457
This commit is contained in:
John 2021-06-12 21:25:15 +02:00
parent d2b743cf93
commit 4c2f6fe004
2 changed files with 13 additions and 1 deletions

View file

@ -0,0 +1,11 @@
xdg-settings uses the ${parameter:offset} substring expansion,
which is not available in posix shell
--- scripts/xdg-settings.in 2018-05-10 17:02:31.000000000 +0200
+++ - 2021-06-12 21:17:34.555007469 +0200
@@ -1,4 +1,4 @@
-#!/bin/sh
+#!/bin/bash
#---------------------------------------------
# xdg-settings
#

View file

@ -1,10 +1,11 @@
# Template file for 'xdg-utils' # Template file for 'xdg-utils'
pkgname=xdg-utils pkgname=xdg-utils
version=1.1.3 version=1.1.3
revision=2 revision=3
build_style=gnu-configure build_style=gnu-configure
make_check_target=test make_check_target=test
hostmakedepends="xmlto lynx" hostmakedepends="xmlto lynx"
depends="bash"
short_desc="Tools to assist applications with various desktop integration tasks" short_desc="Tools to assist applications with various desktop integration tasks"
maintainer="Orphaned <orphan@voidlinux.org>" maintainer="Orphaned <orphan@voidlinux.org>"
license="MIT" license="MIT"