diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2015-04-26 11:08:47 +0200 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2015-04-26 11:08:47 +0200 |
commit | 1cb14f888a4534d8e71f1fb9a64ba172558e138e (patch) | |
tree | 6e2465ad000f541c89c85b24e1005d6185265be8 /compiler | |
parent | e40b6678919ae659ee209e248dc3e4c627c6e6c2 (diff) | |
parent | db84afe016cf0684e7c3d700ec507f3b8461a8b9 (diff) | |
download | Nim-1cb14f888a4534d8e71f1fb9a64ba172558e138e.tar.gz |
Merge pull request #2605 from jyapayne/devel
Fixed the paths of nimfix and nimsuggest to be relative.
Diffstat (limited to 'compiler')
-rw-r--r-- | compiler/nimfix/nimfix.nim.cfg | 2 | ||||
-rw-r--r-- | compiler/nimsuggest/nimsuggest.nim.cfg | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/compiler/nimfix/nimfix.nim.cfg b/compiler/nimfix/nimfix.nim.cfg index b23ed13fb..73219d6f8 100644 --- a/compiler/nimfix/nimfix.nim.cfg +++ b/compiler/nimfix/nimfix.nim.cfg @@ -5,7 +5,7 @@ hint[XDeclaredButNotUsed]:off path:"$projectPath/.." path:"$lib/packages/docutils" -path:"../compiler" +path:"../../compiler" define:useStdoutAsStdmsg symbol:nimfix diff --git a/compiler/nimsuggest/nimsuggest.nim.cfg b/compiler/nimsuggest/nimsuggest.nim.cfg index 062092f16..acca17396 100644 --- a/compiler/nimsuggest/nimsuggest.nim.cfg +++ b/compiler/nimsuggest/nimsuggest.nim.cfg @@ -6,7 +6,7 @@ hint[XDeclaredButNotUsed]:off path:"$projectPath/../.." path:"$lib/packages/docutils" -path:"$nim/compiler" +path:"../../compiler" define:useStdoutAsStdmsg define:nimsuggest |