diff options
author | Michael Niewöhner <[email protected]> | 2019-07-30 19:06:09 +0200 |
---|---|---|
committer | Matthew Ahrens <[email protected]> | 2019-07-30 10:06:09 -0700 |
commit | a6c82894735a476ce5eb275f307ec0b5430296e4 (patch) | |
tree | 27c27092f248c7dab89118ad0fc4af8d2d55f6be /rpm | |
parent | 85ce79bbc8cf17f100eb4ae6a0d1b1ce2e2dd9d9 (diff) |
install path fixes
* rpm: correct pkgconfig path
pkconfig files get installed to $datarootdir/pkgconfig but rpm expects
them to be at $datadir. This works when $datarootdir==$datadir which is
the case most of the time but will fail when they differ.
* install: make initramfs-tools path static
Since initramfs-tools' path is nothing we can control as it is an
external package it does not make any sense to install zfs additions
anywhere else. Simply use /usr/share/initramfs-tools as path.
Reviewed-by: Brian Behlendorf <[email protected]>
Reviewed-by: Richard Laager <[email protected]>
Signed-off-by: Michael Niewöhner <[email protected]>
Closes #9087
Diffstat (limited to 'rpm')
-rw-r--r-- | rpm/generic/zfs.spec.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rpm/generic/zfs.spec.in b/rpm/generic/zfs.spec.in index 4fdf7bb69..a74d066bb 100644 --- a/rpm/generic/zfs.spec.in +++ b/rpm/generic/zfs.spec.in @@ -458,8 +458,8 @@ systemctl --system daemon-reload >/dev/null || true %{_libdir}/libzfs*.so.* %files -n libzfs2-devel -%{_datadir}/pkgconfig/libzfs.pc -%{_datadir}/pkgconfig/libzfs_core.pc +%{_datarootdir}/pkgconfig/libzfs.pc +%{_datarootdir}/pkgconfig/libzfs_core.pc %{_libdir}/*.so %{_includedir}/* %doc AUTHORS COPYRIGHT LICENSE NOTICE README.md |