From 9b861bd3b0389c2095beb55f5795f820c1a70982 Mon Sep 17 00:00:00 2001 From: Alyssa Ross Date: Mon, 30 Aug 2021 12:40:46 +0000 Subject: [PATCH] linuxPackages.vhba: enable PIC When this was added in 21282246208 ("linuxPackages.vhba: disable PIC hardening"), it was necessary to prevent a build failure. Since it now builds fine with PIC enabled, I think it's safe to enable it. --- pkgs/misc/emulators/cdemu/vhba.nix | 2 -- 1 file changed, 2 deletions(-) diff --git a/pkgs/misc/emulators/cdemu/vhba.nix b/pkgs/misc/emulators/cdemu/vhba.nix index 182469310c4..5f65dca1105 100644 --- a/pkgs/misc/emulators/cdemu/vhba.nix +++ b/pkgs/misc/emulators/cdemu/vhba.nix @@ -12,8 +12,6 @@ stdenv.mkDerivation rec { makeFlags = [ "KDIR=${kernel.dev}/lib/modules/${kernel.modDirVersion}/build" "INSTALL_MOD_PATH=$(out)" ]; nativeBuildInputs = kernel.moduleBuildDependencies; - hardeningDisable = [ "pic" ]; - meta = with lib; { description = "Provides a Virtual (SCSI) HBA"; homepage = "http://cdemu.sourceforge.net/about/vhba/";