mirror of
https://github.com/void-linux/void-packages.git
synced 2025-06-16 20:13:52 +02:00
Merge pull request #1859 from pullmoll/gnome-control-center
gnome-control-center: Don't abort on failing check
This commit is contained in:
commit
e0a1319357
2 changed files with 31 additions and 1 deletions
30
srcpkgs/gnome-control-center/patches/musl-nofail-tests.patch
Normal file
30
srcpkgs/gnome-control-center/patches/musl-nofail-tests.patch
Normal file
|
@ -0,0 +1,30 @@
|
||||||
|
Don't fail the build if the test-timezone-gfx or test-endianess checks fail
|
||||||
|
The former fails because it expects /usr/share/gnome-control-center/datetime/backward
|
||||||
|
to be installed, which isn't the case when the check is run.
|
||||||
|
|
||||||
|
--- panels/datetime/Makefile.am
|
||||||
|
+++ panels/datetime/Makefile.am
|
||||||
|
@@ -43,8 +43,8 @@
|
||||||
|
all-local: check-local
|
||||||
|
|
||||||
|
check-local: test-timezone-gfx test-endianess test-timezone
|
||||||
|
- $(builddir)/test-timezone-gfx $(srcdir)/data
|
||||||
|
- $(builddir)/test-endianess
|
||||||
|
+ -$(builddir)/test-timezone-gfx $(srcdir)/data
|
||||||
|
+ -$(builddir)/test-endianess
|
||||||
|
# $(builddir)/test-timezone
|
||||||
|
|
||||||
|
noinst_LTLIBRARIES = libdate_time.la
|
||||||
|
--- panels/datetime/Makefile.in
|
||||||
|
+++ panels/datetime/Makefile.in
|
||||||
|
@@ -1324,8 +1324,8 @@
|
||||||
|
all-local: check-local
|
||||||
|
|
||||||
|
check-local: test-timezone-gfx test-endianess test-timezone
|
||||||
|
- $(builddir)/test-timezone-gfx $(srcdir)/data
|
||||||
|
- $(builddir)/test-endianess
|
||||||
|
+ -$(builddir)/test-timezone-gfx $(srcdir)/data
|
||||||
|
+ -$(builddir)/test-endianess
|
||||||
|
timedated.c: timedated.h
|
||||||
|
timedated.h: Makefile.am timedated1-interface.xml
|
||||||
|
gdbus-codegen \
|
|
@ -1,7 +1,7 @@
|
||||||
# Template file for 'gnome-control-center'
|
# Template file for 'gnome-control-center'
|
||||||
pkgname=gnome-control-center
|
pkgname=gnome-control-center
|
||||||
version=3.16.2
|
version=3.16.2
|
||||||
revision=1
|
revision=2
|
||||||
build_style=gnu-configure
|
build_style=gnu-configure
|
||||||
configure_args="--disable-static --with-cheese"
|
configure_args="--disable-static --with-cheese"
|
||||||
short_desc="The GNOME control center"
|
short_desc="The GNOME control center"
|
||||||
|
|
Loading…
Add table
Reference in a new issue