diff options
author | Luke Shumaker <lukeshu@lukeshu.com> | 2017-09-12 22:34:40 -0400 |
---|---|---|
committer | Luke Shumaker <lukeshu@lukeshu.com> | 2017-09-12 22:34:40 -0400 |
commit | ef333f98a4aa0d06d109e2c3d1b14b291bc5304a (patch) | |
tree | 9054824b638e1bfec899413677012b068028eff0 /libre/systemd/PKGBUILD | |
parent | 73934ba2e660313bde6f191d3de7632a41db6cc5 (diff) | |
download | abslibre-ef333f98a4aa0d06d109e2c3d1b14b291bc5304a.tar.gz abslibre-ef333f98a4aa0d06d109e2c3d1b14b291bc5304a.tar.bz2 abslibre-ef333f98a4aa0d06d109e2c3d1b14b291bc5304a.zip |
libre/systemd: fix libnss_* manpages
They were being installed with a literal '*' in the filename.
Diffstat (limited to 'libre/systemd/PKGBUILD')
-rw-r--r-- | libre/systemd/PKGBUILD | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/libre/systemd/PKGBUILD b/libre/systemd/PKGBUILD index db280c42e..0455ea8ca 100644 --- a/libre/systemd/PKGBUILD +++ b/libre/systemd/PKGBUILD @@ -15,7 +15,7 @@ _commit='d52e2bb9c20216972754c054e8534bca28baab66' # the commit count is handled by pkgver() function. pkgver=234.11 pkgrel=8 -pkgrel+=.parabola2 +pkgrel+=.parabola3 arch=('i686' 'x86_64') arch+=('armv7h') url="https://www.github.com/systemd/systemd" @@ -211,8 +211,9 @@ build() { local nssmodule for nssmodule in systemd myhostname mymachines resolve; do install -dm755 "$srcdir/dest/nss-$nssmodule"/usr/{lib,share/man/man8} - mv -T "$srcdir/dest"/{systemd,nss-$nssmodule}/usr/share/man/man8/nss-$nssmodule.8 - mv -T "$srcdir/dest"/{systemd,nss-$nssmodule}/usr/share/man/man8/libnss_$nssmodule.*.8 + mv -t "$srcdir/dest"/nss-$nssmodule/usr/share/man/man8/ -- \ + "$srcdir/dest"/systemd/usr/share/man/man8/nss-$nssmodule.8 \ + "$srcdir/dest"/systemd/usr/share/man/man8/libnss_$nssmodule.*.8 mv "$srcdir/dest"/systemd/usr/lib/libnss_$nssmodule.so* -t "$srcdir/dest"/nss-$nssmodule/usr/lib/ done |