cbqn: make REPLXX flag explicit

Makefile target o3n-singeli enables REPLXX by default, we want to adhere
the enableReplxx variable.

authored by

Antti Keränen and committed by
Anderson Torres
53875c54 afea6a0e

+2 -2
+2 -2
pkgs/development/interpreters/bqn/cbqn/default.nix
··· 50 51 makeFlags = [ 52 "CC=${stdenv.cc.targetPrefix}cc" 53 - ] 54 - ++ lib.optional enableReplxx "REPLXX=1"; 55 56 buildFlags = [ 57 # interpreter binary 58 (lib.flatten (if enableSingeli then ["o3n-singeli" "f='-mavx2'"] else ["o3"])) 59 ] ++ lib.optionals enableLibcbqn [ 60 # embeddable interpreter as a shared lib 61 "shared-o3"
··· 50 51 makeFlags = [ 52 "CC=${stdenv.cc.targetPrefix}cc" 53 + ]; 54 55 buildFlags = [ 56 # interpreter binary 57 (lib.flatten (if enableSingeli then ["o3n-singeli" "f='-mavx2'"] else ["o3"])) 58 + "REPLXX=${if enableReplxx then "1" else "0"}" 59 ] ++ lib.optionals enableLibcbqn [ 60 # embeddable interpreter as a shared lib 61 "shared-o3"