diff options
author | flywind <xzsflywind@gmail.com> | 2022-04-07 07:11:25 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-07 07:11:25 +0800 |
commit | e1929deac7dd41595e998ce68ee703a113ce8746 (patch) | |
tree | 4cc64b9cb7cd8dc06e1c39f8a4bfd3a04f3ccf2d | |
parent | 065f568470af944cfc43ecfed8df6ac8021b7cbe (diff) | |
download | Nim-e1929deac7dd41595e998ce68ee703a113ce8746.tar.gz |
remove useless compilation condition (#19690)
ref https://github.com/nim-lang/Nim/pull/18546
-rw-r--r-- | testament/important_packages.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testament/important_packages.nim b/testament/important_packages.nim index 456f42cd2..6b0b15fd8 100644 --- a/testament/important_packages.nim +++ b/testament/important_packages.nim @@ -100,7 +100,7 @@ pkg "nimcrypto", "nim r --path:. tests/testall.nim" # `--path:.` workaround need pkg "NimData", "nim c -o:nimdataa src/nimdata.nim" pkg "nimes", "nim c src/nimes.nim" pkg "nimfp", "nim c -o:nfp -r src/fp.nim" -pkg "nimgame2", "nim c -d:nimLegacyConvEnumEnum nimgame2/nimgame.nim" +pkg "nimgame2", "nim c nimgame2/nimgame.nim" # XXX Doesn't work with deprecated 'randomize', will create a PR. pkg "nimgen", "nim c -o:nimgenn -r src/nimgen/runcfg.nim" pkg "nimlsp", allowFailure = true |