diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2021-05-01 11:10:40 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-01 11:10:40 +0200 |
commit | fb86271556b4ea4485195febaa02b972149ca088 (patch) | |
tree | 5ec07b7d619f3d84bbd0aed2aae0569269b65499 /lib/pure/os.nim | |
parent | a55c7e9679e8df0ffc7eaff1e2d5626ec5a9129a (diff) | |
download | Nim-fb86271556b4ea4485195febaa02b972149ca088.tar.gz |
system.nim cleanup some exported constants which should never have be… (#17909)
* system.nim cleanup some exported constants which should never have been exported
Diffstat (limited to 'lib/pure/os.nim')
-rw-r--r-- | lib/pure/os.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pure/os.nim b/lib/pure/os.nim index 50a88b43b..287fbe125 100644 --- a/lib/pure/os.nim +++ b/lib/pure/os.nim @@ -1910,7 +1910,7 @@ proc copyFileToDir*(source, dir: string, options = {cfSymlinkFollow}) copyFile(source, dir / source.lastPathPart, options) when not declared(ENOENT) and not defined(windows): - when NoFakeVars: + when defined(nimscript): when not defined(haiku): const ENOENT = cint(2) # 2 on most systems including Solaris else: |