diff options
author | Timothee Cour <timothee.cour2@gmail.com> | 2020-05-11 23:27:47 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-12 08:27:47 +0200 |
commit | b8ec07f19e3fdeb2f86591c0e5f6af1a87063cf3 (patch) | |
tree | c7ba7568120a43842580dfe7a07191696ade2c8f /compiler/nim.nim | |
parent | a39123c93c9d2976300f1b8eba09d40b16f1c46c (diff) | |
download | Nim-b8ec07f19e3fdeb2f86591c0e5f6af1a87063cf3.tar.gz |
properly fixes #13758 so that `import std/macros` stays legal (#14291)
* properly fix https://github.com/nim-lang/Nim/issues/12389 * use --lib:lib in koch.nim.cfg instead * third time is the charm
Diffstat (limited to 'compiler/nim.nim')
-rw-r--r-- | compiler/nim.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/nim.nim b/compiler/nim.nim index b48fce0b8..2b0d78dd4 100644 --- a/compiler/nim.nim +++ b/compiler/nim.nim @@ -24,7 +24,7 @@ import idents, lineinfos, cmdlinehelper, pathutils -from browsers import openDefaultBrowser +from std/browsers import openDefaultBrowser from nodejs import findNodeJs when hasTinyCBackend: |