Unverified Commit ab3696d5 authored by Aleksana's avatar Aleksana Committed by GitHub
Browse files

quickjs: fix cross compilation (#463874)

parents 55e9edf0 4cb9036c
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -24,7 +24,11 @@ stdenv.mkDerivation (finalAttrs: {
    texinfo
  ];

  makeFlags = [ "PREFIX=$(out)" ];
  makeFlags = [
    "CC=${stdenv.cc.targetPrefix}cc"
    "AR=${stdenv.cc.targetPrefix}ar"
    "PREFIX=$(out)"
  ];

  doInstallCheck = true;