summary refs log tree commit diff
path: root/pkgs/tools/security/tboot
diff options
context:
space:
mode:
authorRobin Gloster <mail@glob.in>2019-11-05 02:10:31 +0100
committerJan Tojnar <jtojnar@gmail.com>2019-12-30 13:22:43 +0100
commit2157dcd141a5df499698ffb9b1d901192f089bdc (patch)
treeaff6dd99868e7b461d5b5f87f347c079960862ed /pkgs/tools/security/tboot
parent133103d7094c148bdc9152562b16c8872c44f345 (diff)
downloadnixpkgs-2157dcd141a5df499698ffb9b1d901192f089bdc.tar
nixpkgs-2157dcd141a5df499698ffb9b1d901192f089bdc.tar.gz
nixpkgs-2157dcd141a5df499698ffb9b1d901192f089bdc.tar.bz2
nixpkgs-2157dcd141a5df499698ffb9b1d901192f089bdc.tar.lz
nixpkgs-2157dcd141a5df499698ffb9b1d901192f089bdc.tar.xz
nixpkgs-2157dcd141a5df499698ffb9b1d901192f089bdc.tar.zst
nixpkgs-2157dcd141a5df499698ffb9b1d901192f089bdc.zip
treewide: installFlags is a list
Diffstat (limited to 'pkgs/tools/security/tboot')
-rw-r--r--pkgs/tools/security/tboot/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/tools/security/tboot/default.nix b/pkgs/tools/security/tboot/default.nix
index f5184b98562..478f77f95f9 100644
--- a/pkgs/tools/security/tboot/default.nix
+++ b/pkgs/tools/security/tboot/default.nix
@@ -24,7 +24,7 @@ stdenv.mkDerivation rec {
     substituteInPlace docs/Makefile --replace /usr/share /share
   '';
 
-  installFlags = "DESTDIR=$(out)";
+  installFlags = [ "DESTDIR=$(out)" ];
 
   meta = with stdenv.lib; {
     description = "A pre-kernel/VMM module that uses Intel(R) TXT to perform a measured and verified launch of an OS kernel/VMM";