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 50 51 51 makeFlags = [ 52 52 "CC=${stdenv.cc.targetPrefix}cc" 53 - ] 54 - ++ lib.optional enableReplxx "REPLXX=1"; 53 + ]; 55 54 56 55 buildFlags = [ 57 56 # interpreter binary 58 57 (lib.flatten (if enableSingeli then ["o3n-singeli" "f='-mavx2'"] else ["o3"])) 58 + "REPLXX=${if enableReplxx then "1" else "0"}" 59 59 ] ++ lib.optionals enableLibcbqn [ 60 60 # embeddable interpreter as a shared lib 61 61 "shared-o3"