From 5ab690169832c7e48ba72512f6c4c336ca76db52 Mon Sep 17 00:00:00 2001 From: Lukas Obermann Date: Sun, 17 Jun 2018 14:51:07 +0200 Subject: [PATCH] x11/libXau add missing dependency after the recent update to xorg server 2.0 I got an error when building libXau that no package xproto was found. Looking at the PR https://github.com/LibreELEC/LibreELEC.tv/pull/2651 I saw it was changed to xorgproto. Adding it to the dependencies fixed the build --- packages/x11/lib/libXau/package.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/x11/lib/libXau/package.mk b/packages/x11/lib/libXau/package.mk index b5039b04db..eb2035d79f 100644 --- a/packages/x11/lib/libXau/package.mk +++ b/packages/x11/lib/libXau/package.mk @@ -24,7 +24,7 @@ PKG_ARCH="any" PKG_LICENSE="OSS" PKG_SITE="http://www.X.org" PKG_URL="http://xorg.freedesktop.org/archive/individual/lib/$PKG_NAME-$PKG_VERSION.tar.bz2" -PKG_DEPENDS_TARGET="toolchain util-macros" +PKG_DEPENDS_TARGET="toolchain util-macros xorgproto" PKG_SECTION="x11/lib" PKG_SHORTDESC="libXau: X authorization file management libary" PKG_LONGDESC="X authorization file management libary"