summary refs log tree commit diff stats
path: root/compiler/nimconf.nim
diff options
context:
space:
mode:
authorAndreas Rumpf <rumpf_a@web.de>2018-04-23 10:53:56 +0200
committerAndreas Rumpf <rumpf_a@web.de>2018-04-24 09:34:29 +0200
commitba86b09e69e4c7cb6bc906f1f1db918547854161 (patch)
treea094c9574179aad5030a9582b41163a63dd7df2d /compiler/nimconf.nim
parent64908bf171ac3f8cd4c81a6de0e512e47d1d5d5d (diff)
downloadNim-ba86b09e69e4c7cb6bc906f1f1db918547854161.tar.gz
remove obsolete nimrod.cfg configuration files
Diffstat (limited to 'compiler/nimconf.nim')
-rw-r--r--compiler/nimconf.nim4
1 files changed, 0 insertions, 4 deletions
diff --git a/compiler/nimconf.nim b/compiler/nimconf.nim
index c19b41af1..bdf558134 100644
--- a/compiler/nimconf.nim
+++ b/compiler/nimconf.nim
@@ -247,10 +247,6 @@ proc loadConfigs*(cfg: string; cache: IdentCache; config: ConfigRef = nil) =
       var projectConfig = changeFileExt(gProjectFull, "nimcfg")
       if not fileExists(projectConfig):
         projectConfig = changeFileExt(gProjectFull, "nim.cfg")
-      if not fileExists(projectConfig):
-        projectConfig = changeFileExt(gProjectFull, "nimrod.cfg")
-        if fileExists(projectConfig):
-          rawMessage(warnDeprecated, projectConfig)
       readConfigFile(projectConfig, cache, config)
 
 proc loadConfigs*(cfg: string; config: ConfigRef = nil) =