Merge pull request #179443 from B4dM4n/openiscsi-fix-service

openiscsi: fix systemd service location
This commit is contained in:
Sergei Trofimovich 2022-06-28 19:28:00 +01:00 committed by GitHub
commit f3f952c338
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -22,8 +22,6 @@ stdenv.mkDerivation rec {
NIX_CFLAGS_COMPILE = "-DUSE_KMOD";
preConfigure = ''
sed -i 's|/usr|/|' Makefile
# Remove blanket -Werror. Fails for minor error on gcc-11.
substituteInPlace usr/Makefile --replace ' -Werror ' ' '
'';
@ -32,11 +30,12 @@ stdenv.mkDerivation rec {
makeFlags = [
"INSTALL=install"
"SED=sed"
"prefix=/"
"manprefix=/share"
];
installFlags = [
"install"
"install_systemd"
];
postInstall = ''