diff options
author | Luke Shumaker <lukeshu@lukeshu.com> | 2018-07-12 17:32:33 -0400 |
---|---|---|
committer | Luke Shumaker <lukeshu@lukeshu.com> | 2018-07-12 17:32:33 -0400 |
commit | b6e79542570abfc4fb6ee542fe121bf5c68e3c82 (patch) | |
tree | c6b2b227410783ec03a8795af32952bc95a53266 /libre | |
parent | 929d3c7df78f7a2a3b9ac43bf375201219bef59d (diff) | |
download | abslibre-b6e79542570abfc4fb6ee542fe121bf5c68e3c82.tar.gz abslibre-b6e79542570abfc4fb6ee542fe121bf5c68e3c82.tar.bz2 abslibre-b6e79542570abfc4fb6ee542fe121bf5c68e3c82.zip |
libre/systemd: libsystemd: Depend on $X rather than systemd-$X
Otherwise it's impossible to install systemd with eudev, because even
though 'systemd' depends on the generic 'udev', it also depends on
'libsystemd', which would depend on 'systemd-libudev', which conflicts with
'eudev-libudev'.
Diffstat (limited to 'libre')
-rw-r--r-- | libre/systemd/PKGBUILD | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libre/systemd/PKGBUILD b/libre/systemd/PKGBUILD index 63789c0e7..35522cf4b 100644 --- a/libre/systemd/PKGBUILD +++ b/libre/systemd/PKGBUILD @@ -14,7 +14,7 @@ pkgname+=("${_libsystemd[@]/#/systemd-}") _commit='de7436b02badc82200dc127ff190b8155769b8e7' pkgver=239.0 pkgrel=2 -pkgrel+=.parabola2 +pkgrel+=.parabola3 arch=('x86_64') arch+=('i686' 'armv7h') url='https://www.github.com/systemd/systemd' @@ -327,7 +327,7 @@ package_systemd-udev() { package_libsystemd() { pkgdesc='systemd client libraries metapackage' - depends=("${_libsystemd[@]/#/systemd-}") + depends=("${_libsystemd[@]/libsystemd/libsystemd.so}") license=('LGPL2.1') } |