-
Notifications
You must be signed in to change notification settings - Fork 1.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
missing dependecies on rpm #1380
Comments
How are you installing it? If your using the yum repo then the spl/zfs-dkms package has a dependency on dkms and the dkms package should depend on the make. |
I tried installing on CentOS 6.4 now using these commands from http://zfsonlinux.org/epel.html : |
Alright thanks for he feedback. I'll sort out the dependency issues with a clean minimal install. As for the dracut package it's for Fedora so the best thing to do might be just to disable it. |
The only remaining perl dependency is part of the SPL_AC_META macro. By eliminating this and replacing it with awk we can avoid the need to pull in perl to rebuild the packages. Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov> Issue openzfs/zfs#1380
For the DKMS package to successfully build the kernel-devel headers must be included along gcc, make, and perl. The SPL code never directly invokes perl but the kernel build system depends on it. Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov> Issue openzfs/zfs#1380
The only remaining perl dependency is part of the ZFS_AC_META macro. By eliminating this and replacing it with awk we can avoid the need to pull in perl to rebuild the packages. Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov> Issue #1380
The updated master code now includes the correct dependencies. Using a minimal Centos install I was able to verify everything gets pulled in properly. This fix will appear in the repo when the packages are next updated. In the meanwhile just do a |
The only remaining perl dependency is part of the ZFS_AC_META macro. By eliminating this and replacing it with awk we can avoid the need to pull in perl to rebuild the packages. Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov> Issue openzfs#1380
For the DKMS package to successfully build the kernel-devel headers must be included along gcc, make, and perl. The ZFS code never directly invokes perl but the kernel build system depends on it. Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov> Closes openzfs#1380
I'm trying to install zfs on amazon instances, using a Amazon Linux image. It's a Redhat clone distribution.
But it fails because the default installation is very minimal, and the zfs rpm is missing dependencies on gcc and make.
yum install zfs gcc make failes too, because zfs is then installed before gcc and Make.
You should add the missing dependencies on the spec files.
The text was updated successfully, but these errors were encountered: