diff options
author | Araq <rumpf_a@web.de> | 2016-11-30 11:00:51 +0100 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2016-11-30 11:00:51 +0100 |
commit | b1b2dd606ba736775868853657e331f287423dee (patch) | |
tree | e482389e1e9bf4b9b2c1b6fbad62d3209c463453 /compiler | |
parent | 5c46f268802217b774df23d4dcf07a6f7b0ebc20 (diff) | |
download | Nim-b1b2dd606ba736775868853657e331f287423dee.tar.gz |
fixes #5076
Diffstat (limited to 'compiler')
-rw-r--r-- | compiler/options.nim | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/compiler/options.nim b/compiler/options.nim index 9edafb17a..b04f6a963 100644 --- a/compiler/options.nim +++ b/compiler/options.nim @@ -227,8 +227,7 @@ proc setDefaultLibpath*() = libpath = parentNimLibPath proc canonicalizePath*(path: string): string = - when not FileSystemCaseSensitive: result = path.expandFilename.toLowerAscii - else: result = path.expandFilename + result = path.expandFilename proc shortenDir*(dir: string): string = ## returns the interesting part of a dir |