about summary refs log tree commit diff
diff options
context:
space:
mode:
authorRobin Gloster <mail@glob.in>2019-10-29 23:21:22 +0100
committerJan Tojnar <jtojnar@gmail.com>2019-12-30 12:15:27 +0100
commitc739183eeff32949ea44692919f6d09c0e59718e (patch)
tree90d3a9793757a5a070ce41b4e71fea2485038e0d
parent5572288ec2d7f23013053e55d6154933dd5029d0 (diff)
tachyon: *Flags are lists
-rw-r--r--pkgs/development/libraries/tachyon/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/libraries/tachyon/default.nix b/pkgs/development/libraries/tachyon/default.nix
index 5e0f37bbb5266..d1d4ee806b805 100644
--- a/pkgs/development/libraries/tachyon/default.nix
+++ b/pkgs/development/libraries/tachyon/default.nix
@@ -44,7 +44,7 @@ stdenv.mkDerivation rec {
          if stdenv.hostPlatform.system == "x86_64-freebsd" then "bsd"           else
          if stdenv.hostPlatform.system == "x686-freebsd"   then "bsd"           else
          throw "Don't know what arch to select for tachyon build";
-  makeFlags = arch;
+  makeFlags = [ arch ];
   patches = [
     # Remove absolute paths in Make-config (and unset variables so they can be set in preBuild)
     ./no-absolute-paths.patch