openiscsi: fix systemd service location

+2 -3
+2 -3
pkgs/os-specific/linux/open-iscsi/default.nix
··· 22 NIX_CFLAGS_COMPILE = "-DUSE_KMOD"; 23 24 preConfigure = '' 25 - sed -i 's|/usr|/|' Makefile 26 - 27 # Remove blanket -Werror. Fails for minor error on gcc-11. 28 substituteInPlace usr/Makefile --replace ' -Werror ' ' ' 29 ''; ··· 32 makeFlags = [ 33 "INSTALL=install" 34 "SED=sed" 35 ]; 36 37 installFlags = [ 38 "install" 39 - "install_systemd" 40 ]; 41 42 postInstall = ''
··· 22 NIX_CFLAGS_COMPILE = "-DUSE_KMOD"; 23 24 preConfigure = '' 25 # Remove blanket -Werror. Fails for minor error on gcc-11. 26 substituteInPlace usr/Makefile --replace ' -Werror ' ' ' 27 ''; ··· 30 makeFlags = [ 31 "INSTALL=install" 32 "SED=sed" 33 + "prefix=/" 34 + "manprefix=/share" 35 ]; 36 37 installFlags = [ 38 "install" 39 ]; 40 41 postInstall = ''